2021-07-02 16:29:49 +00:00
|
|
|
error[E0594]: cannot assign to `*item`, which is behind a `&` reference
|
2020-03-22 09:02:18 +00:00
|
|
|
--> $DIR/issue-69789-iterator-mut-suggestion.rs:7:9
|
|
|
|
|
|
|
|
|
LL | for item in &mut std::iter::empty::<&'static ()>() {
|
|
|
|
| -------------------------------------- this iterator yields `&` references
|
|
|
|
LL |
|
|
|
|
LL | *item = ();
|
|
|
|
| ^^^^^^^^^^ `item` is a `&` reference, so the data it refers to cannot be written
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-03-22 09:02:18 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0594`.
|