DEBSOURCES
Skip Quicknav
sources / rustc / 1.87.0%2Bdfsg1-1 / 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(); }