rust-clippy/tests/ui/redundant_field_names.stderr

65 lines
2.3 KiB
Text
Raw Normal View History

error: redundant field names in struct initialization
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_field_names.rs:33:9
|
2018-12-27 15:57:55 +00:00
LL | gender: gender,
| ^^^^^^^^^^^^^^ help: replace it with: `gender`
|
= note: `-D clippy::redundant-field-names` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::redundant_field_names)]`
error: redundant field names in struct initialization
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_field_names.rs:34:9
|
2018-12-27 15:57:55 +00:00
LL | age: age,
| ^^^^^^^^ help: replace it with: `age`
error: redundant field names in struct initialization
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_field_names.rs:55:25
|
2018-12-27 15:57:55 +00:00
LL | let _ = RangeFrom { start: start };
| ^^^^^^^^^^^^ 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-12-27 15:57:55 +00:00
LL | let _ = RangeTo { end: end };
| ^^^^^^^^ 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-12-27 15:57:55 +00:00
LL | let _ = Range { start: start, end: end };
| ^^^^^^^^^^^^ 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-12-27 15:57:55 +00:00
LL | let _ = Range { start: start, end: end };
| ^^^^^^^^ 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-12-27 15:57:55 +00:00
LL | let _ = RangeToInclusive { end: end };
| ^^^^^^^^ help: replace it with: `end`
error: redundant field names in struct initialization
--> 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
|
LL | let _ = RangeFrom { start: start };
| ^^^^^^^^^^^^ help: replace it with: `start`
error: aborting due to 9 previous errors