rust/tests/ui/borrowck/borrowck-overloaded-index-and-overloaded-deref.stderr

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

15 lines
527 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0506]: cannot assign to `v` because it is borrowed
--> $DIR/borrowck-overloaded-index-and-overloaded-deref.rs:31:5
2018-08-08 07:28:26 -05:00
|
LL | let i = &v[0].f;
2023-01-14 21:06:44 -06:00
| - `v` is borrowed here
2018-08-08 07:28:26 -05:00
LL | v = MyVec { x: MyPtr { x: Foo { f: 23 } } };
2023-01-14 21:06:44 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `v` is assigned to here but it was already borrowed
LL |
2018-08-08 07:28:26 -05:00
LL | read(*i);
| -- borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.