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
519 B
Plaintext
Raw Normal View History

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