rust/src/test/compile-fail/liveness-move-from-mode.rs
2012-10-12 20:43:37 -07:00

11 lines
183 B
Rust

fn take(-_x: int) {}
fn main() {
let x: int = 25;
loop {
take(move x); //~ ERROR use of moved variable: `x`
//~^ NOTE move of variable occurred here
}
}