rustc/tests/ui/liveness/liveness-use-after-move.rs
2023-08-02 10:33:26 +02:00

9 lines
137 B
Rust

fn main() {
let x: Box<_> = 5.into();
let y = x;
println!("{}", *x); //~ ERROR borrow of moved value: `x`
y.clone();
}