mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 10:33:27 +00:00
6b6253016f
rustc now (https://github.com/rust-lang/rust/issues/33525) does not report an error count anymore, because it was not correct in many cases.
23 lines
755 B
Text
23 lines
755 B
Text
error: You matched a field with a wildcard pattern. Consider using `..` instead
|
|
--> unneeded_field_pattern.rs:17:15
|
|
|
|
|
17 | Foo { a: _, b: 0, .. } => {}
|
|
| ^^^^
|
|
|
|
|
= note: `-D unneeded-field-pattern` implied by `-D warnings`
|
|
= help: Try with `Foo { b: 0, .. }`
|
|
|
|
error: All the struct fields are matched to a wildcard pattern, consider using `..`.
|
|
--> unneeded_field_pattern.rs:19:9
|
|
|
|
|
19 | Foo { a: _, b: _, c: _ } => {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D unneeded-field-pattern` implied by `-D warnings`
|
|
= help: Try with `Foo { .. }` instead
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|