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
905 B
Plaintext
Raw Normal View History

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-12-12 12:07:09 +00: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-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();
| ++++++++
2017-04-25 03:25: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`.