rust/src/test/ui/nll/issue-27868.stderr

19 lines
561 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `vecvec` because it is borrowed
2018-12-25 08:56:47 -07:00
--> $DIR/issue-27868.rs:26:9
|
LL | vecvec[0] += {
| ------
| |
| _____borrow of `vecvec` occurs here
| |
LL | | vecvec = vec![];
| | ^^^^^^ assignment to borrowed `vecvec` occurs here
LL | | //~^ ERROR cannot assign to `vecvec` because it is borrowed [E0506]
LL | | 0
LL | | };
| |_____- borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.