index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
ui
/
binding
/
multi-let.rs
blob: 7f8671a5a65890262b33c090ea3f8808f931955d (
plain
)
1
2
3
4
5
6
7
//@ run-pass
pub
fn
main
()
{
let
x
=
10
;
let
y
=
x
;
assert_eq!
(
y
,
10
);
}