2018-12-27 11:08:51 +00:00
|
|
|
error[E0506]: cannot assign to `v[_]` because it is borrowed
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/drop-no-may-dangle.rs:18:9
|
2017-12-20 16:20:07 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let p: WrapMayNotDangle<&usize> = WrapMayNotDangle { value: &v[0] };
|
2023-01-15 03:06:44 +00:00
|
|
|
| ----- `v[_]` is borrowed here
|
2017-12-20 16:20:07 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | v[0] += 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^^^^ `v[_]` is assigned to here but it was already borrowed
|
2017-12-20 16:20:07 +00:00
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2018-09-29 21:30:43 +00:00
|
|
|
| - borrow might be used here, when `p` is dropped and runs the `Drop` code for type `WrapMayNotDangle`
|
2017-12-20 16:20:07 +00:00
|
|
|
|
2018-12-27 11:08:51 +00:00
|
|
|
error[E0506]: cannot assign to `v[_]` because it is borrowed
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/drop-no-may-dangle.rs:21:5
|
2017-12-20 16:20:07 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let p: WrapMayNotDangle<&usize> = WrapMayNotDangle { value: &v[0] };
|
2023-01-15 03:06:44 +00:00
|
|
|
| ----- `v[_]` is borrowed here
|
2017-12-20 16:20:07 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | v[0] += 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^^^^ `v[_]` is assigned to here but it was already borrowed
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2018-09-29 21:30:43 +00:00
|
|
|
| - borrow might be used here, when `p` is dropped and runs the `Drop` code for type `WrapMayNotDangle`
|
2017-12-20 16:20:07 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|