]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/move-subpaths-moves-root.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / nll / move-subpaths-moves-root.stderr
1 error[E0382]: use of moved value: `x`
2 --> $DIR/move-subpaths-moves-root.rs:6:10
3 |
4 LL | drop(x.0);
5 | --- value moved here
6 LL | drop(x); //~ ERROR use of moved value
7 | ^ value used here after partial move
8 |
9 = note: move occurs because `x.0` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.