2019-05-05 06:02:32 -05:00
|
|
|
error[E0507]: cannot move out of `y`, a captured variable in an `Fn` closure
|
2022-12-25 18:51:11 -06:00
|
|
|
--> $DIR/unboxed-closures-move-upvar-from-non-once-ref-closure.rs:12:9
|
2017-04-24 22:25:30 -05:00
|
|
|
|
|
2022-06-27 00:45:35 -05:00
|
|
|
LL | let y = vec![format!("World")];
|
|
|
|
| - captured outer variable
|
|
|
|
LL | call(|| {
|
|
|
|
| -- captured by this `Fn` closure
|
|
|
|
LL | y.into_iter();
|
|
|
|
| ^ ----------- `y` moved due to this method call
|
|
|
|
| |
|
|
|
|
| move occurs because `y` has type `Vec<String>`, which does not implement the `Copy` trait
|
2022-03-01 22:30:16 -06:00
|
|
|
|
|
2022-12-12 06:07:09 -06:00
|
|
|
note: `into_iter` takes ownership of the receiver `self`, which moves `y`
|
2022-03-01 22:30:16 -06:00
|
|
|
--> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
|
2022-12-25 18:51:11 -06:00
|
|
|
help: you can `clone` the value and consume it, but this might not be your desired behavior
|
|
|
|
|
|
|
|
|
LL | y.clone().into_iter();
|
|
|
|
| ++++++++
|
2017-04-24 22:25:30 -05:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-04-24 22:25:30 -05:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0507`.
|