blob: f76d09cd0b2ae60c1cf496a1ca58061a8cf2a148 [file] [log] [blame] [edit]
fn main() {
let x: Box<_> = Box::new(1);
let f = move|| {
let _a = x;
drop(x);
//~^ ERROR: use of moved value: `x`
};
f();
}