rust/src/test/ui/issue-40402-ref-hints/issue-40402-1.stderr
2017-11-24 11:32:35 +01:00

12 lines
362 B
Plaintext

error[E0507]: cannot move out of indexed content
--> $DIR/issue-40402-1.rs:19:13
|
19 | let e = f.v[0]; //~ ERROR cannot move out of indexed content
| ^^^^^^
| |
| cannot move out of indexed content
| help: consider using a reference instead: `&f.v[0]`
error: aborting due to previous error