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