2018-04-11 18:11:51 +00:00
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/issue-48803.rs:10:5
|
2018-04-11 18:11:51 +00:00
|
|
|
|
|
|
|
|
LL | let y = &x;
|
2023-01-15 03:06:44 +00:00
|
|
|
| -- `x` is borrowed here
|
2018-04-11 18:11:51 +00:00
|
|
|
...
|
|
|
|
LL | x = "modified";
|
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 |
|
2018-04-11 18:11:51 +00:00
|
|
|
LL | println!("{}", w); // prints "modified"
|
|
|
|
| - borrow later used here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0506`.
|