2017-04-24 20:25:30 -07:00
|
|
|
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
|
|
|
|
--> $DIR/unboxed-closures-move-upvar-from-non-once-ref-closure.rs:21:9
|
|
|
|
|
|
|
|
|
19 | let y = vec![format!("World")]; //~ NOTE moved
|
|
|
|
| - captured outer variable
|
|
|
|
20 | call(|| {
|
|
|
|
21 | y.into_iter();
|
|
|
|
| ^ cannot move out of captured outer variable in an `Fn` closure
|
|
|
|
|
2017-05-22 18:46:05 +07:00
|
|
|
error: aborting due to previous error(s)
|
2017-04-24 20:25:30 -07:00
|
|
|
|