mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
46 lines
1.5 KiB
Text
46 lines
1.5 KiB
Text
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:36:9
|
|
|
|
|
36 | gender: gender,
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
|
|
|
|
= note: `-D clippy::redundant-field-names` implied by `-D warnings`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:37:9
|
|
|
|
|
37 | age: age,
|
|
| ^^^^^^^^ help: replace it with: `age`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:58:25
|
|
|
|
|
58 | let _ = RangeFrom { start: start };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:59:23
|
|
|
|
|
59 | let _ = RangeTo { end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:60:21
|
|
|
|
|
60 | let _ = Range { start: start, end: end };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:60:35
|
|
|
|
|
60 | let _ = Range { start: start, end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:62:32
|
|
|
|
|
62 | let _ = RangeToInclusive { end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|