]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/reborrow-sugg-move-then-borrow.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / reborrow-sugg-move-then-borrow.stderr
1 error[E0382]: borrow of moved value: `state`
2   --> $DIR/reborrow-sugg-move-then-borrow.rs:20:18
3    |
4 LL | fn fill_memory_blocks_mt(state: &mut State) {
5    |                          ----- move occurs because `state` has type `&mut State`, which does not implement the `Copy` trait
6 LL |     for _ in state {}
7    |              ----- `state` moved due to this implicit call to `.into_iter()`
8 LL |
9 LL |     fill_segment(state);
10    |                  ^^^^^ value borrowed here after move
11    |
12 note: `into_iter` takes ownership of the receiver `self`, which moves `state`
13   --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
14 help: consider creating a fresh reborrow of `state` here
15    |
16 LL |     for _ in &mut *state {}
17    |              ++++++
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0382`.