2019-01-30 13:49:31 -06:00
|
|
|
error[E0594]: cannot assign to `*x` which is behind a `&` reference
|
|
|
|
--> $DIR/issue-57989.rs:7:5
|
|
|
|
|
|
|
|
|
LL | fn f(x: &i32) {
|
|
|
|
| ---- help: consider changing this to be a mutable reference: `&mut i32`
|
|
|
|
LL | let g = &x;
|
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
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x` because it is borrowed
|
|
|
|
--> $DIR/issue-57989.rs:7:5
|
|
|
|
|
|
|
|
|
LL | let g = &x;
|
|
|
|
| -- borrow of `*x` occurs here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *x = 0;
|
2019-01-30 13:49:31 -06:00
|
|
|
| ^^^^^^ assignment to borrowed `*x` occurs here
|
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-04-17 12:26:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|