2020-02-09 07:19:06 -06:00
|
|
|
error[E0596]: cannot borrow `not_mut` as mutable, as it is not declared as mutable
|
2021-05-17 23:14:06 -05:00
|
|
|
--> $DIR/nested-binding-modes-mut.rs:4:5
|
2020-02-09 07:19:06 -06:00
|
|
|
|
|
|
|
|
LL | &mut not_mut;
|
|
|
|
| ^^^^^^^^^^^^ cannot borrow as mutable
|
2023-01-01 02:06:31 -06:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | let mut is_mut @ mut not_mut = 42;
|
|
|
|
| +++
|
2020-02-09 07:19:06 -06:00
|
|
|
|
|
|
|
error[E0596]: cannot borrow `not_mut` as mutable, as it is not declared as mutable
|
2021-05-17 23:14:06 -05:00
|
|
|
--> $DIR/nested-binding-modes-mut.rs:9:5
|
2020-02-09 07:19:06 -06:00
|
|
|
|
|
|
|
|
LL | &mut not_mut;
|
|
|
|
| ^^^^^^^^^^^^ cannot borrow as mutable
|
2023-01-01 02:06:31 -06:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | let mut not_mut @ mut is_mut = 42;
|
|
|
|
| +++
|
2020-02-09 07:19:06 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|