]> git.proxmox.com Git - rustc.git/blob - src/test/ui/borrowck/issue-69789-iterator-mut-suggestion.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / borrowck / issue-69789-iterator-mut-suggestion.stderr
1 error[E0594]: cannot assign to `*item`, which is behind a `&` reference
2 --> $DIR/issue-69789-iterator-mut-suggestion.rs:7:9
3 |
4 LL | for item in &mut std::iter::empty::<&'static ()>() {
5 | -------------------------------------- this iterator yields `&` references
6 LL |
7 LL | *item = ();
8 | ^^^^^^^^^^ `item` 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`.