Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
move-2-unique.rs
blob: 9d414aceb43d58b2802d022eec721e83eaad46e4 [
file
]
fn
main
()
{
let
x
=
~{
x
:
1
,
y
:
2
,
z
:
3
};
let
y
<-
x
;
assert
(
y
.
y
==
2
);
}