blob: 76a1279750ff30e7e78bb573a2eb388d876ed08a [file] [log] [blame]
error[E0382]: use of moved value: `x`
--> $DIR/move-subpaths-moves-root.rs:16:10
|
LL | drop(x.0);
| --- value moved here
LL | drop(x);
| ^ value used here after move
|
= note: move occurs because `x.0` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.