]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/issue-83309-ice-immut-in-for-loop.stderr
Merge commit 'efa8f5521d3813cc897ba29ea0ef98c7aef66bb6' into rustfmt-subtree
[rust.git] / src / test / 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`.