rust/src/test/ui/issue-40402-ref-hints/issue-40402-1.stderr

13 lines
440 B
Plaintext
Raw Normal View History

error[E0507]: cannot move out of indexed content
--> $DIR/issue-40402-1.rs:19:13
|
2017-11-20 06:13:27 -06:00
19 | let e = f.v[0]; //~ ERROR cannot move out of indexed content
| ^^^^^^
| |
| cannot move out of indexed content
2017-07-05 11:58:22 -05:00
| help: consider using a reference instead: `&f.v[0]`
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0507"