rust/src/test/ui/borrowck/unboxed-closures-move-upvar-from-non-once-ref-closure.stderr

12 lines
432 B
Plaintext
Raw Normal View History

2017-04-24 22:25:30 -05: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
|
2017-11-20 06:13:27 -06:00
19 | let y = vec![format!("World")]; //~ NOTE captured outer variable
2017-04-24 22:25:30 -05:00
| - captured outer variable
20 | call(|| {
21 | y.into_iter();
| ^ cannot move out of captured outer variable in an `Fn` closure
error: aborting due to previous error
2017-04-24 22:25:30 -05:00