rust/src/test/compile-fail/liveness-use-after-move.rs

6 lines
143 B
Rust
Raw Normal View History

fn main() {
let x = @5;
let y <- x; //! NOTE move of variable occurred here
log(debug, *x); //! ERROR use of moved variable: `x`
}