Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
move-subpaths-moves-root.rs
blob: d266c6bb6584ffc019980b83dc180f802e12bea1 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
x
=
(
vec
![
1
,
2
,
3
],
);
drop
(
x
.
0
);
drop
(
x
);
//~ ERROR use of partially moved value
}