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