mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +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`
|
||
|
}
|
||
|
};
|
||
|
}
|