2018-08-14 02:45:02 +00:00
|
|
|
error[E0506]: cannot assign to `vecvec` because it is borrowed
|
2019-09-06 14:04:26 +00:00
|
|
|
--> $DIR/issue-27868.rs:24:9
|
2018-08-14 02:45:02 +00:00
|
|
|
|
|
|
|
|
LL | vecvec[0] += {
|
|
|
|
| ------
|
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| _____`vecvec` is borrowed here
|
2018-08-14 02:45:02 +00:00
|
|
|
| |
|
|
|
|
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 | |
|
2018-08-14 02:45:02 +00:00
|
|
|
LL | | 0
|
|
|
|
LL | | };
|
|
|
|
| |_____- borrow later used here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0506`.
|