mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 11:41:02 +00:00
6 lines
112 B
Rust
6 lines
112 B
Rust
fn main() {
|
|
let x = (vec![1, 2, 3], );
|
|
drop(x.0);
|
|
drop(x); //~ ERROR use of partially moved value
|
|
}
|