rust/tests/ui/nll/issue-48803.stderr

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

16 lines
472 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `x` because it is borrowed
--> $DIR/issue-48803.rs:10:5
|
LL | let y = &x;
2023-01-15 03:06:44 +00:00
| -- `x` is borrowed here
...
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 |
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`.