rust/tests/ui/nll/drop-no-may-dangle.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-12-27 05:08:51 -06:00
error[E0506]: cannot assign to `v[_]` because it is borrowed
2022-04-01 12:13:25 -05:00
--> $DIR/drop-no-may-dangle.rs:18:9
|
2018-02-22 18:42:32 -06:00
LL | let p: WrapMayNotDangle<&usize> = WrapMayNotDangle { value: &v[0] };
2023-01-14 21:06:44 -06:00
| ----- `v[_]` is borrowed here
...
2019-03-09 06:03:44 -06:00
LL | v[0] += 1;
2023-01-14 21:06:44 -06:00
| ^^^^^^^^^ `v[_]` is assigned to here but it was already borrowed
...
2018-02-22 18:42:32 -06:00
LL | }
| - borrow might be used here, when `p` is dropped and runs the `Drop` code for type `WrapMayNotDangle`
2018-12-27 05:08:51 -06:00
error[E0506]: cannot assign to `v[_]` because it is borrowed
2022-04-01 12:13:25 -05:00
--> $DIR/drop-no-may-dangle.rs:21:5
|
2018-02-22 18:42:32 -06:00
LL | let p: WrapMayNotDangle<&usize> = WrapMayNotDangle { value: &v[0] };
2023-01-14 21:06:44 -06:00
| ----- `v[_]` is borrowed here
...
2019-03-09 06:03:44 -06:00
LL | v[0] += 1;
2023-01-14 21:06:44 -06:00
| ^^^^^^^^^ `v[_]` is assigned to here but it was already borrowed
2018-02-22 18:42:32 -06:00
LL | }
| - borrow might be used here, when `p` is dropped and runs the `Drop` code for type `WrapMayNotDangle`
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`.