2018-02-10 21:13:17 +01:00
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:34:9
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | gender: gender,
|
2018-02-11 10:50:19 +01:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::redundant-field-names` implied by `-D warnings`
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:35:9
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | age: age,
|
2018-02-11 10:50:19 +01:00
|
|
|
| ^^^^^^^^ help: replace it with: `age`
|
2018-02-10 21:13:17 +01:00
|
|
|
|
2018-03-05 09:30:07 +01:00
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:56:25
|
2018-03-05 09:30:07 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = RangeFrom { start: start };
|
2018-03-05 09:30:07 +01:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:57:23
|
2018-03-05 09:30:07 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = RangeTo { end: end };
|
2018-03-05 09:30:07 +01:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:58:21
|
2018-03-05 09:30:07 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = Range { start: start, end: end };
|
2018-03-05 09:30:07 +01:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:58:35
|
2018-03-05 09:30:07 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = Range { start: start, end: end };
|
2018-03-05 09:30:07 +01:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/redundant_field_names.rs:60:32
|
2018-03-05 09:30:07 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = RangeToInclusive { end: end };
|
2018-03-05 09:30:07 +01:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
2018-08-06 08:20:50 +02:00
|
|
|
error: aborting due to 7 previous errors
|
2018-02-10 21:13:17 +01:00
|
|
|
|