DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.85.0%2Bdfsg3-1~deb12u3 / tests / ui / liveness / liveness-use-after-move.rs
12345678
fn main() { let x: Box<_> = 5.into(); let y = x; println!("{}", *x); //~ ERROR borrow of moved value: `x` y.clone(); }