mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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`
|
|
}
|
|
};
|
|
}
|