rust/src/test/ui/borrowck/borrowck-move-moved-value-into-closure.rs

13 lines
217 B
Rust
Raw Normal View History

2015-01-07 20:53:58 -06:00
#![feature(box_syntax)]
fn call_f<F:FnOnce() -> isize>(f: F) -> isize {
f()
}
fn main() {
let t: Box<_> = box 3;
call_f(move|| { *t + 1 });
call_f(move|| { *t + 1 }); //~ ERROR use of moved value
}