2018-02-10 21:13:17 +01:00
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:34:9
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
34 | gender: gender,
|
2018-02-11 10:50:19 +01:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
|
|
|
= note: `-D redundant-field-names` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:35:9
|
2018-02-10 21:13:17 +01:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
35 | 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 17:30:07 +09:00
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:53:25
|
2018-03-05 17:30:07 +09:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
53 | let _ = RangeFrom { start: start };
|
2018-03-05 17:30:07 +09:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:54:23
|
2018-03-05 17:30:07 +09:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
54 | let _ = RangeTo { end: end };
|
2018-03-05 17:30:07 +09:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:55:21
|
2018-03-05 17:30:07 +09:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
55 | let _ = Range { start: start, end: end };
|
2018-03-05 17:30:07 +09:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:55:35
|
2018-03-05 17:30:07 +09:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
55 | let _ = Range { start: start, end: end };
|
2018-03-05 17:30:07 +09:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2018-03-11 13:57:28 +09:00
|
|
|
--> $DIR/redundant_field_names.rs:57:32
|
2018-03-05 17:30:07 +09:00
|
|
|
|
|
2018-03-11 13:57:28 +09:00
|
|
|
57 | let _ = RangeToInclusive { end: end };
|
2018-03-05 17:30:07 +09:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
2018-05-03 15:52:44 +02:00
|
|
|
error: aborting due to 7 previous errors
|
2018-02-10 21:13:17 +01:00
|
|
|
|