rust/src/test/ui/error-codes/E0560.stderr

11 lines
301 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0560]: struct `Simba` has no field named `father`
--> $DIR/E0560.rs:16:32
|
16 | let s = Simba { mother: 1, father: 0 };
| ^^^^^^^ `Simba` does not have this field
|
= note: available fields are: `mother`
error: aborting due to previous error