Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binding
/
let-destruct-ref.rs
blob: 824ac6f5f02428e3b444ebdceb00966824da84e7 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
x
=
3
_usize
;
let
ref
y
=
x
;
assert_eq
!(
x
,
*
y
);
}