2018-02-10 14:13:17 -06:00
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:33:9
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | gender: gender,
|
2018-02-11 03:50:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::redundant-field-names` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_field_names)]`
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:34:9
|
2018-02-10 14:13:17 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | age: age,
|
2018-02-11 03:50:19 -06:00
|
|
|
| ^^^^^^^^ help: replace it with: `age`
|
2018-02-10 14:13:17 -06:00
|
|
|
|
2018-03-05 02:30:07 -06:00
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:55:25
|
2018-03-05 02:30:07 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = RangeFrom { start: start };
|
2018-03-05 02:30:07 -06:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:56:23
|
2018-03-05 02:30:07 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = RangeTo { end: end };
|
2018-03-05 02:30:07 -06:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:57:21
|
2018-03-05 02:30:07 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = Range { start: start, end: end };
|
2018-03-05 02:30:07 -06:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:57:35
|
2018-03-05 02:30:07 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = Range { start: start, end: end };
|
2018-03-05 02:30:07 -06:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:59:32
|
2018-03-05 02:30:07 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _ = RangeToInclusive { end: end };
|
2018-03-05 02:30:07 -06:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
2022-10-23 08:18:45 -05:00
|
|
|
error: redundant field names in struct initialization
|
2023-09-25 04:28:58 -05:00
|
|
|
--> $DIR/redundant_field_names.rs:88:25
|
2022-10-23 08:18:45 -05:00
|
|
|
|
|
|
|
|
LL | let _ = RangeFrom { start: start };
|
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2018-02-10 14:13:17 -06:00
|
|
|
|