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

13 lines
476 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
|
2018-02-22 18:42:32 -06:00
LL | let y = vec![format!("World")];
2017-04-24 22:25:30 -05:00
| - captured outer variable
2018-02-24 17:01:39 -06:00
LL | call(|| {
2018-02-22 18:42:32 -06:00
LL | y.into_iter();
2017-04-24 22:25:30 -05:00
| ^ 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
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0507"