rust/tests/ui/borrowck/issue-52713-bug.stderr

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

15 lines
436 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `x` because it is borrowed
--> $DIR/issue-52713-bug.rs:12:5
|
LL | let y = &x;
2023-01-15 03:06:44 +00:00
| -- `x` is borrowed here
...
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
LL | println!("{}", y);
| - borrow later used here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0506`.