2018-08-08 14:28:26 +02:00
|
|
|
error[E0382]: use of moved value: `t`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-move-moved-value-into-closure.rs:14:12
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-01-02 16:43:08 -08:00
|
|
|
LL | let t: Box<_> = box 3;
|
|
|
|
| - move occurs because `t` has type `std::boxed::Box<isize>`, which does not implement the `Copy` trait
|
|
|
|
LL |
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | call_f(move|| { *t + 1 });
|
|
|
|
| ------ - variable moved due to use in closure
|
|
|
|
| |
|
|
|
|
| value moved into closure here
|
|
|
|
LL | call_f(move|| { *t + 1 }); //[ast]~ ERROR capture of moved value
|
|
|
|
| ^^^^^^ - use occurs due to use in closure
|
|
|
|
| |
|
|
|
|
| value used here after move
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|