blob: bdfd6fb7e5539d70f5080c4df9d3cedbf60f18f8 [file] [log] [blame]
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
--> $DIR/unboxed-closures-move-upvar-from-non-once-ref-closure.rs:11:9
|
LL | let y = vec![format!("World")];
| - captured outer variable
LL | call(|| {
LL | y.into_iter();
| ^ 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`.