]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-83309-ice-immut-in-for-loop.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / issue-83309-ice-immut-in-for-loop.stderr
1 error[E0594]: cannot assign to `*v`, which is behind a `&` reference
2   --> $DIR/issue-83309-ice-immut-in-for-loop.rs:11:9
3    |
4 LL |     for v in Query.iter_mut() {
5    |              ---------------- this iterator yields `&` references
6 LL |
7 LL |         *v -= 1;
8    |         ^^^^^^^ `v` is a `&` reference, so the data it refers to cannot be written
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0594`.