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