rustc/tests/ui/nll/move-subpaths-moves-root.rs
2023-08-02 10:33:26 +02:00

6 lines
112 B
Rust

fn main() {
let x = (vec![1, 2, 3], );
drop(x.0);
drop(x); //~ ERROR use of partially moved value
}