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
426 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;
| -- borrow of `x` occurs here
...
2019-03-09 15:03:44 +03:00
LL | x += 1;
| ^^^^^^ assignment to borrowed `x` occurs here
LL | println!("{}", y);
| - borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.