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