Sign in
android
/
toolchain
/
rustc
/
fd666f2f11b6b870cdfff85689e078cd371668e2
/
.
/
src
/
test
/
ui
/
nll
/
move-subpaths-moves-root.rs
blob: e7caf89e78391d2b50eec6e068edd5afbe67764e [
file
]
fn
main
()
{
let
x
=
(
vec
![
1
,
2
,
3
],
);
drop
(
x
.
0
);
drop
(
x
);
//~ ERROR use of moved value
}