mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 09:44:03 +00:00
9 lines
137 B
Rust
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();
|
|
}
|