rust/tests/ui/unneeded_field_pattern.stderr

21 lines
707 B
Plaintext
Raw Normal View History

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
|
2018-12-27 09:57:55 -06:00
LL | Foo { a: _, b: 0, .. } => {},
| ^^^^
|
= help: try with `Foo { b: 0, .. }`
2022-09-22 11:04:22 -05:00
= note: `-D clippy::unneeded-field-pattern` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unneeded_field_pattern)]`
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
|
2018-12-27 09:57:55 -06:00
LL | Foo { a: _, b: _, c: _ } => {},
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try with `Foo { .. }` instead
2018-01-16 10:06:27 -06:00
error: aborting due to 2 previous errors