rust/tests/ui/redundant_field_names.stderr
2018-02-12 11:26:00 +01:00

17 lines
475 B
Plaintext

error: redundant field names in struct initialization
--> $DIR/redundant_field_names.rs:23:9
|
23 | gender: gender,
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
= note: `-D redundant-field-names` implied by `-D warnings`
error: redundant field names in struct initialization
--> $DIR/redundant_field_names.rs:24:9
|
24 | age: age,
| ^^^^^^^^ help: replace it with: `age`
error: aborting due to 2 previous errors