2018-02-10 20:13:17 +00:00
|
|
|
error: redundant field names in struct initialization
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:33:9
|
2018-02-10 20:13:17 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_field_names)]`
|
2018-02-10 20:13:17 +00:00
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:34:9
|
2018-02-10 20:13:17 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:55:25
|
2018-03-05 08:30:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = RangeFrom { start: start };
|
2018-03-05 08:30:07 +00:00
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:56:23
|
2018-03-05 08:30:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = RangeTo { end: end };
|
2018-03-05 08:30:07 +00:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:57:21
|
2018-03-05 08:30:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:57:35
|
2018-03-05 08:30:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:59:32
|
2018-03-05 08:30:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = RangeToInclusive { end: end };
|
2018-03-05 08:30:07 +00:00
|
|
|
| ^^^^^^^^ help: replace it with: `end`
|
|
|
|
|
2022-10-23 13:18:45 +00:00
|
|
|
error: redundant field names in struct initialization
|
2024-03-07 12:19:33 +00:00
|
|
|
--> tests/ui/redundant_field_names.rs:71:25
|
|
|
|
|
|
|
|
|
LL | let _ = S { v: v };
|
|
|
|
| ^^^^ help: replace it with: `v`
|
|
|
|
...
|
|
|
|
LL | internal!(v);
|
|
|
|
| ------------ in this macro invocation
|
|
|
|
|
|
|
|
|
= note: this error originates in the macro `internal` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: redundant field names in struct initialization
|
|
|
|
--> tests/ui/redundant_field_names.rs:99:25
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _ = RangeFrom { start: start };
|
|
|
|
| ^^^^^^^^^^^^ help: replace it with: `start`
|
|
|
|
|
2024-03-07 12:19:33 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-02-10 20:13:17 +00:00
|
|
|
|