2018-08-08 07:28:26 -05:00
|
|
|
error[E0382]: use of moved value: `t`
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/borrowck-move-moved-value-into-closure.rs:11:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2021-08-24 19:39:40 -05:00
|
|
|
LL | let t: Box<_> = Box::new(3);
|
2020-09-02 02:40:56 -05:00
|
|
|
| - move occurs because `t` has type `Box<isize>`, which does not implement the `Copy` trait
|
2022-06-08 13:07:59 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | call_f(move|| { *t + 1 });
|
2021-03-17 01:51:27 -05:00
|
|
|
| ------ -- variable moved due to use in closure
|
2018-08-08 07:28:26 -05:00
|
|
|
| |
|
|
|
|
| value moved into closure here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | call_f(move|| { *t + 1 });
|
2021-03-17 01:51:27 -05:00
|
|
|
| ^^^^^^ -- use occurs due to use in closure
|
2018-08-08 07:28:26 -05:00
|
|
|
| |
|
|
|
|
| value used here after move
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|