blob: 866b3a2a8af9b485346667b1522910c8e1a79a5b [file] [log] [blame]
fn main() {
let mut x = Box::new(0);
let _u = x; // error shouldn't note this move
x = Box::new(1);
drop(x);
let _ = (1,x); //~ ERROR use of moved value: `x`
}