mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
58 lines
2 KiB
Text
58 lines
2 KiB
Text
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:34:9
|
|
|
|
|
34 | 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:35:9
|
|
|
|
|
35 | age: age,
|
|
| ^^^^^^^^ help: replace it with: `age`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:53:25
|
|
|
|
|
53 | let _ = RangeFrom { start: start };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:54:23
|
|
|
|
|
54 | let _ = RangeTo { end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:55:21
|
|
|
|
|
55 | let _ = Range { start: start, end: end };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:55:35
|
|
|
|
|
55 | let _ = Range { start: start, end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:56:30
|
|
|
|
|
56 | let _ = RangeInclusive { start: start, end: end };
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:56:44
|
|
|
|
|
56 | let _ = RangeInclusive { start: start, end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: redundant field names in struct initialization
|
|
--> $DIR/redundant_field_names.rs:57:32
|
|
|
|
|
57 | let _ = RangeToInclusive { end: end };
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
error: aborting due to 9 previous errors
|
|
|