2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `y`, a captured variable in an `Fn` closure
|
2022-12-26 00:51:11 +00:00
|
|
|
--> $DIR/unboxed-closures-move-upvar-from-non-once-ref-closure.rs:12:9
|
2017-04-25 03:25:30 +00:00
|
|
|
|
|
2022-06-27 05:45:35 +00: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-02 04:30:16 +00:00
|
|
|
|
|
2022-12-12 12:07:09 +00:00
|
|
|
note: `into_iter` takes ownership of the receiver `self`, which moves `y`
|
2022-03-02 04:30:16 +00:00
|
|
|
--> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
|
2022-12-26 00:51:11 +00:00
|
|
|
help: you can `clone` the value and consume it, but this might not be your desired behavior
|
|
|
|
|
|
|
|
|
LL | y.clone().into_iter();
|
2023-06-22 20:40:49 +00:00
|
|
|
| ++++++++
|
2017-04-25 03:25:30 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to previous error
|
2017-04-25 03:25:30 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0507`.
|