]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-61108.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.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    |              ----------- `bad_letters` moved due to this implicit call to `.into_iter()`
8 ...
9 LL |     bad_letters.push('s');
10    |     ^^^^^^^^^^^^^^^^^^^^^ value borrowed here after move
11    |
12 note: this function takes ownership of the receiver `self`, which moves `bad_letters`
13   --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
14    |
15 LL |     fn into_iter(self) -> Self::IntoIter;
16    |                  ^^^^
17 help: consider iterating over a slice of the `Vec<char>`'s content to avoid moving into the `for` loop
18    |
19 LL |     for l in &bad_letters {
20    |              +
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0382`.