mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
682 B
Plaintext
19 lines
682 B
Plaintext
error[E0382]: use of moved value: `t`
|
|
--> $DIR/borrowck-move-moved-value-into-closure.rs:11:12
|
|
|
|
|
LL | let t: Box<_> = Box::new(3);
|
|
| - move occurs because `t` has type `Box<isize>`, which does not implement the `Copy` trait
|
|
LL |
|
|
LL | call_f(move|| { *t + 1 });
|
|
| ------ -- variable moved due to use in closure
|
|
| |
|
|
| value moved into closure here
|
|
LL | call_f(move|| { *t + 1 });
|
|
| ^^^^^^ -- use occurs due to use in closure
|
|
| |
|
|
| value used here after move
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|