rust/tests/ui/nll/issue-57989.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
770 B
Plaintext
Raw Normal View History

error[E0594]: cannot assign to `*x`, which is behind a `&` reference
--> $DIR/issue-57989.rs:5:5
|
2019-03-09 12:03:44 +00:00
LL | *x = 0;
| ^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written
|
help: consider changing this to be a mutable reference
|
LL | fn f(x: &mut i32) {
2023-04-19 07:50:08 +00:00
| +++
error[E0506]: cannot assign to `*x` because it is borrowed
--> $DIR/issue-57989.rs:5:5
|
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 |
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`.