blob: 7620f6a3cbee071a0920bb56cb5b5a5e89c0d84d [file] [log] [blame]
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
--> $DIR/unboxed-closure-illegal-move.rs:15:31
|
LL | let x = Box::new(0);
| - captured outer variable
LL | let f = to_fn(|| drop(x));
| ^ cannot move out of captured outer variable in an `Fn` closure
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
--> $DIR/unboxed-closure-illegal-move.rs:19:35
|
LL | let x = Box::new(0);
| - captured outer variable
LL | let f = to_fn_mut(|| drop(x));
| ^ cannot move out of captured outer variable in an `FnMut` closure
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
--> $DIR/unboxed-closure-illegal-move.rs:28:36
|
LL | let x = Box::new(0);
| - captured outer variable
LL | let f = to_fn(move || drop(x));
| ^ cannot move out of captured outer variable in an `Fn` closure
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
--> $DIR/unboxed-closure-illegal-move.rs:32:40
|
LL | let x = Box::new(0);
| - captured outer variable
LL | let f = to_fn_mut(move || drop(x));
| ^ 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`.