#![feature(box_syntax)] fn take(_x: Box) {} fn main() { let x: Box = box 25; loop { take(x); //~ ERROR use of moved value: `x` } }