mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
c1a7af0f2a
``` error[E0596]: cannot borrow `*test` as mutable, as it is behind a `&` reference --> $DIR/suggest-mut-iterator.rs:22:9 | LL | for test in &tests { | ------ this iterator yields `&` references LL | test.add(2); | ^^^^ `test` is a `&` reference, so the data it refers to cannot be borrowed as mutable | help: use a mutable iterator instead | LL | for test in &mut tests { | +++ ``` Address #114311.
17 lines
560 B
Plaintext
17 lines
560 B
Plaintext
error[E0596]: cannot borrow `*test` as mutable, as it is behind a `&` reference
|
|
--> $DIR/suggest-mut-iterator.rs:22:9
|
|
|
|
|
LL | for test in &tests {
|
|
| ------ this iterator yields `&` references
|
|
LL | test.add(2);
|
|
| ^^^^ `test` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
|
|
|
|
help: use a mutable iterator instead
|
|
|
|
|
LL | for test in &mut tests {
|
|
| +++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|