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

19 lines
485 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `vecvec` because it is borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/issue-27868.rs:26:9
|
LL | vecvec[0] += {
| ------
| |
| _____borrow of `vecvec` occurs here
| |
LL | | vecvec = vec![];
| | ^^^^^^ assignment to borrowed `vecvec` occurs here
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`.