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