mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
52 lines
1.8 KiB
Text
52 lines
1.8 KiB
Text
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:35:9
|
|
|
|
|
LL | 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:36:9
|
|
|
|
|
LL | age: age,
|
|
| ^^^^^^^^ help: replace it with: `age`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:57:25
|
|
|
|
|
LL | let _ = RangeFrom { start: start };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:58:23
|
|
|
|
|
LL | let _ = RangeTo { end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:59:21
|
|
|
|
|
LL | let _ = Range { start: start, end: end };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:59:35
|
|
|
|
|
LL | let _ = Range { start: start, end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:61:32
|
|
|
|
|
LL | let _ = RangeToInclusive { end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:83:25
|
|
|
|
|
LL | let _ = RangeFrom { start: start };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: aborting due to 8 previous errors
|
|
|