12 lines
184 B
Rust
12 lines
184 B
Rust
#![feature(box_syntax)]
|
|
|
|
fn main() {
|
|
let x: Box<_> = box 1;
|
|
let f = move|| {
|
|
let _a = x;
|
|
drop(x);
|
|
//~^ ERROR: use of moved value: `x`
|
|
};
|
|
f();
|
|
}
|