2018-08-08 12:28:26 +00:00
|
|
|
error[E0382]: use of moved value: `t`
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-move-moved-value-into-closure.rs:11:12
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-08-25 00:39:40 +00:00
|
|
|
LL | let t: Box<_> = Box::new(3);
|
2020-09-02 07:40:56 +00:00
|
|
|
| - 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 });
|
2021-03-17 06:51:27 +00:00
|
|
|
| ------ -- variable moved due to use in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| value moved into closure here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | call_f(move|| { *t + 1 });
|
2021-03-17 06:51:27 +00:00
|
|
|
| ^^^^^^ -- use occurs due to use in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| value used here after move
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
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`.
|