blob: b93535c89b19eab71adba14af08644327f4e91bf [file] [log] [blame] [edit]
fn take(_x: Box<isize>) {}
fn main() {
let _ = || {
let x: Box<isize> = Box::new(25);
loop {
take(x); //~ ERROR use of moved value: `x`
}
};
}