]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-69789-iterator-mut-suggestion.stderr
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / 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`.