2020-08-11 08:43:21 -05:00
|
|
|
error: you matched a field with a wildcard pattern, consider using `..` instead
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unneeded_field_pattern.rs:18:15
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | Foo { a: _, b: 0, .. } => {},
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
= help: try with `Foo { b: 0, .. }`
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::unneeded-field-pattern` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unneeded_field_pattern)]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: all the struct fields are matched to a wildcard pattern, consider using `..`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unneeded_field_pattern.rs:20:9
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | Foo { a: _, b: _, c: _ } => {},
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
= help: try with `Foo { .. }` instead
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|