rust/src/test/ui/error-codes/E0026-teach.stderr

14 lines
744 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0026]: struct `Thing` does not have a field named `z`
--> $DIR/E0026-teach.rs:21:23
|
2018-02-22 18:42:32 -06:00
LL | Thing { x, y, z } => {}
2018-02-07 21:35:35 -06:00
| ^ struct `Thing` does not have field `z`
|
= note: This error indicates that a struct pattern attempted to extract a non-existent field from a struct. Struct fields are identified by the name used before the colon : so struct patterns should resemble the declaration of the struct type being matched.
If you are using shorthand field patterns but want to refer to the struct field by a different name, you should rename it explicitly.
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 E0026"