Sign in
fuchsia
/
third_party
/
rust
/
2fcea9fb68c8e04f10e5cb15bbfb486de9800afa
/
.
/
tests
/
ui
/
binding
/
multi-let.rs
blob: 7f8671a5a65890262b33c090ea3f8808f931955d [
file
] [
log
] [
blame
]
//@ run-pass
pub
fn
main
()
{
let
x
=
10
;
let
y
=
x
;
assert_eq
!(
y
,
10
);
}