DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb12u2 / tests / ui / liveness / liveness-move-call-arg.rs
1234567891011
fn take(_x: Box<isize>) {} fn main() { let x: Box<isize> = Box::new(25); loop { take(x); //~ ERROR use of moved value: `x` } }