blob: 654881d25e685ea045b12755b8bfa1388de7ea04 [file] [log] [blame]
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
--> $DIR/moves-based-on-type-move-out-of-closure-env-issue-1965.rs:11:28
|
LL | let i = box 3;
| - captured outer variable
LL | let _f = to_fn(|| test(i));
| ^ cannot move out of captured outer variable in an `Fn` closure
error: aborting due to previous error
For more information about this error, try `rustc --explain E0507`.