2018-02-10 14:13:17 -06:00
|
|
|
error: redundant field names in struct initialization
|
2018-03-04 23:31:37 -06:00
|
|
|
--> $DIR/redundant_field_names.rs:24:9
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
2018-03-04 23:31:37 -06:00
|
|
|
24 | gender: gender,
|
2018-02-11 03:50:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
|
|
|
= note: `-D redundant-field-names` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2018-03-04 23:31:37 -06:00
|
|
|
--> $DIR/redundant_field_names.rs:25:9
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
2018-03-04 23:31:37 -06:00
|
|
|
25 | age: age,
|
2018-02-11 03:50:19 -06:00
|
|
|
| ^^^^^^^^ help: replace it with: `age`
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|