rust/src/test/ui/nll/issue-57989.stderr

25 lines
780 B
Plaintext
Raw Normal View History

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