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

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

19 lines
493 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `vecvec` because it is borrowed
2019-09-06 14:04:26 +00:00
--> $DIR/issue-27868.rs:24:9
|
LL | vecvec[0] += {
| ------
| |
2023-01-15 03:06:44 +00:00
| _____`vecvec` is borrowed here
| |
LL | | vecvec = vec![];
2023-01-15 03:06:44 +00:00
| | ^^^^^^ `vecvec` is assigned to here but it was already borrowed
2019-03-09 12:03:44 +00:00
LL | |
LL | | 0
LL | | };
| |_____- borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.