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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
906 B
Plaintext
Raw Normal View History

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-12-12 06:07:09 -06:00
note: `into_iter` takes ownership of the receiver `self`, which moves `y`
--> $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
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`.