2018-12-27 05:08:51 -06:00
|
|
|
error[E0506]: cannot assign to `v[_]` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/drop-no-may-dangle.rs:20:9
|
2017-12-20 10:20:07 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let p: WrapMayNotDangle<&usize> = WrapMayNotDangle { value: &v[0] };
|
2018-12-27 05:08:51 -06:00
|
|
|
| ----- borrow of `v[_]` occurs here
|
2017-12-20 10:20:07 -06:00
|
|
|
...
|
2018-12-27 05:08:51 -06:00
|
|
|
LL | v[0] += 1; //~ ERROR cannot assign to `v[_]` because it is borrowed
|
|
|
|
| ^^^^^^^^^ assignment to borrowed `v[_]` occurs here
|
2017-12-20 10:20:07 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-09-29 16:30:43 -05:00
|
|
|
| - borrow might be used here, when `p` is dropped and runs the `Drop` code for type `WrapMayNotDangle`
|
2017-12-20 10:20:07 -06:00
|
|
|
|
2018-12-27 05:08:51 -06:00
|
|
|
error[E0506]: cannot assign to `v[_]` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/drop-no-may-dangle.rs:23:5
|
2017-12-20 10:20:07 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let p: WrapMayNotDangle<&usize> = WrapMayNotDangle { value: &v[0] };
|
2018-12-27 05:08:51 -06:00
|
|
|
| ----- borrow of `v[_]` occurs here
|
2017-12-20 10:20:07 -06:00
|
|
|
...
|
2018-12-27 05:08:51 -06:00
|
|
|
LL | v[0] += 1; //~ ERROR cannot assign to `v[_]` because it is borrowed
|
|
|
|
| ^^^^^^^^^ assignment to borrowed `v[_]` occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-09-29 16:30:43 -05:00
|
|
|
| - borrow might be used here, when `p` is dropped and runs the `Drop` code for type `WrapMayNotDangle`
|
2017-12-20 10:20:07 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|