Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
nll
/
move-subpaths-moves-root.rs
blob: d266c6bb6584ffc019980b83dc180f802e12bea1 [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
=
(
vec
![
1
,
2
,
3
],
);
drop
(
x
.
0
);
drop
(
x
);
//~ ERROR use of partially moved value
}