]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-61108.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-61108.stderr
CommitLineData
dc9dc135
XL
1error[E0382]: borrow of moved value: `bad_letters`
2 --> $DIR/issue-61108.rs:6:5
3 |
4LL | let mut bad_letters = vec!['e', 't', 'o', 'i'];
1b1a35ee 5 | --------------- move occurs because `bad_letters` has type `Vec<char>`, which does not implement the `Copy` trait
dc9dc135 6LL | for l in bad_letters {
ee023bcb 7 | ----------- `bad_letters` moved due to this implicit call to `.into_iter()`
dc9dc135
XL
8...
9LL | bad_letters.push('s');
c295e0f8 10 | ^^^^^^^^^^^^^^^^^^^^^ value borrowed here after move
f035d41b 11 |
5869c6ff 12note: this function takes ownership of the receiver `self`, which moves `bad_letters`
3dfed10e 13 --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
f035d41b
XL
14 |
15LL | fn into_iter(self) -> Self::IntoIter;
16 | ^^^^
ee023bcb
FG
17help: consider iterating over a slice of the `Vec<char>`'s content to avoid moving into the `for` loop
18 |
19LL | for l in &bad_letters {
20 | +
dc9dc135
XL
21
22error: aborting due to previous error
23
24For more information about this error, try `rustc --explain E0382`.