rust/src/test/compile-fail/borrowck-move-by-capture.rs

12 lines
248 B
Rust
Raw Normal View History

pub fn main() {
let foo = ~3;
let _pfoo = &foo;
let _f: @fn() -> int = || *foo + 5;
2013-03-15 14:24:24 -05:00
//~^ ERROR cannot move `foo`
let bar = ~3;
let _g = || { //~ ERROR capture of moved value
let _h: @fn() -> int = || *bar;
};
}