2021-07-02 11:29:49 -05:00
|
|
|
error[E0594]: cannot assign to `*x`, which is behind a `&` reference
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/issue-57989.rs:5:5
|
2019-01-30 13:49:31 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *x = 0;
|
2019-01-30 13:49:31 -06:00
|
|
|
| ^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written
|
2022-12-28 23:52:57 -06:00
|
|
|
|
|
|
|
|
help: consider changing this to be a mutable reference
|
|
|
|
|
|
|
|
|
LL | fn f(x: &mut i32) {
|
2023-04-19 02:50:08 -05:00
|
|
|
| +++
|
2019-01-30 13:49:31 -06:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x` because it is borrowed
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/issue-57989.rs:5:5
|
2019-01-30 13:49:31 -06:00
|
|
|
|
|
|
|
|
LL | let g = &x;
|
2023-01-14 21:06:44 -06:00
|
|
|
| -- `*x` is borrowed here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *x = 0;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^ `*x` is assigned to here but it was already borrowed
|
2019-03-09 06:03:44 -06:00
|
|
|
LL |
|
2019-01-30 13:49:31 -06:00
|
|
|
LL | g;
|
|
|
|
| - borrow later used here
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-11-06 06:58:44 -06:00
|
|
|
Some errors have detailed explanations: E0506, E0594.
|
|
|
|
For more information about an error, try `rustc --explain E0506`.
|