]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/issue-83309-ice-immut-in-for-loop.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / borrowck / issue-83309-ice-immut-in-for-loop.stderr
CommitLineData
36d6ef2b
XL
1error[E0594]: cannot assign to `*v` which is behind a `&` reference
2 --> $DIR/issue-83309-ice-immut-in-for-loop.rs:11:9
3 |
4LL | for v in Query.iter_mut() {
5 | ---------------- this iterator yields `&` references
6LL |
7LL | *v -= 1;
8 | ^^^^^^^ `v` is a `&` reference, so the data it refers to cannot be written
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0594`.