rust-clippy/tests/ui/redundant_field_names.stderr

17 lines
475 B
Text
Raw Normal View History

error: redundant field names in struct initialization
--> $DIR/redundant_field_names.rs:24:9
|
24 | 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:25:9
|
25 | age: age,
| ^^^^^^^^ help: replace it with: `age`
error: aborting due to 2 previous errors