os-rust/src/test/ui/borrowck/borrowck-overloaded-index-and-overloaded-deref.ast.stderr

12 lines
455 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0506]: cannot assign to `v` because it is borrowed
2018-12-25 08:56:47 -07:00
--> $DIR/borrowck-overloaded-index-and-overloaded-deref.rs:34: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
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.