rust/src/test/compile-fail/liveness-move-from-mode.rs

11 lines
177 B
Rust
Raw Normal View History

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