mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 13:11:08 +00:00
13 lines
190 B
Rust
13 lines
190 B
Rust
fn take(_x: Box<isize>) {}
|
|
|
|
|
|
fn main() {
|
|
let _ = || {
|
|
let x: Box<isize> = Box::new(25);
|
|
|
|
loop {
|
|
take(x); //~ ERROR use of moved value: `x`
|
|
}
|
|
};
|
|
}
|