2018-08-06 10:17:39 +00:00
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/issue-52713-bug.rs:12:5
|
2018-08-06 10:17:39 +00:00
|
|
|
|
|
|
|
|
LL | let y = &x;
|
2023-01-15 03:06:44 +00:00
|
|
|
| -- `x` is borrowed here
|
2018-08-06 10:17:39 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x += 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^ `x` is assigned to here but it was already borrowed
|
2018-08-06 10:17:39 +00:00
|
|
|
LL | println!("{}", y);
|
|
|
|
| - borrow later used here
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-06 10:17:39 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0506`.
|