2018-08-08 07:28:26 -05:00
|
|
|
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:15:31
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
|
|
|
LL | let f = to_fn(|| drop(x)); //~ ERROR cannot move
|
|
|
|
| ^ cannot move out of captured outer variable in an `Fn` closure
|
|
|
|
|
|
|
|
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:19:35
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
|
|
|
LL | let f = to_fn_mut(|| drop(x)); //~ ERROR cannot move
|
|
|
|
| ^ cannot move out of captured outer variable in an `FnMut` closure
|
|
|
|
|
|
|
|
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:28:36
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
|
|
|
LL | let f = to_fn(move || drop(x)); //~ ERROR cannot move
|
|
|
|
| ^ cannot move out of captured outer variable in an `Fn` closure
|
|
|
|
|
|
|
|
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:32:40
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
|
|
|
LL | let f = to_fn_mut(move || drop(x)); //~ ERROR cannot move
|
|
|
|
| ^ cannot move out of captured outer variable in an `FnMut` closure
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|