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
485 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `vecvec` because it is borrowed
2019-09-06 16:04:26 +02:00
--> $DIR/issue-27868.rs:24:9
|
LL | vecvec[0] += {
| ------
| |
| _____borrow of `vecvec` occurs here
| |
LL | | vecvec = vec![];
| | ^^^^^^ assignment to borrowed `vecvec` occurs here
2019-03-09 15:03:44 +03: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`.