rust/tests/ui/borrowck/borrowck-move-moved-value-into-closure.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
682 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0382]: use of moved value: `t`
--> $DIR/borrowck-move-moved-value-into-closure.rs:11:12
2018-08-08 12:28:26 +00:00
|
LL | let t: Box<_> = Box::new(3);
| - move occurs because `t` has type `Box<isize>`, which does not implement the `Copy` trait
2022-06-08 18:07:59 +00:00
LL |
2018-08-08 12:28:26 +00:00
LL | call_f(move|| { *t + 1 });
| ------ -- variable moved due to use in closure
2018-08-08 12:28:26 +00:00
| |
| value moved into closure here
LL | call_f(move|| { *t + 1 });
| ^^^^^^ -- use occurs due to use in closure
2018-08-08 12:28:26 +00:00
| |
| value used here after move
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0382`.