1
Fork 0
rust/src/test/ui/liveness/liveness-move-call-arg.rs

12 lines
168 B
Rust
Raw Normal View History

2015-01-07 18:53:58 -08:00
#![feature(box_syntax)]
fn take(_x: Box<isize>) {}
fn main() {
let x: Box<isize> = box 25;
loop {
take(x); //~ ERROR use of moved value: `x`
}
}