mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
error: wildcard pattern covers any other pattern as it will match anyway
|
|
--> tests/ui/wild_in_or_pats.rs:8:9
|
|
|
|
|
LL | "bar" | _ => {
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider handling `_` separately
|
|
= note: `-D clippy::wildcard-in-or-patterns` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::wildcard_in_or_patterns)]`
|
|
|
|
error: wildcard pattern covers any other pattern as it will match anyway
|
|
--> tests/ui/wild_in_or_pats.rs:17:9
|
|
|
|
|
LL | "bar" | "bar2" | _ => {
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider handling `_` separately
|
|
|
|
error: wildcard pattern covers any other pattern as it will match anyway
|
|
--> tests/ui/wild_in_or_pats.rs:26:9
|
|
|
|
|
LL | _ | "bar" | _ => {
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= help: consider handling `_` separately
|
|
|
|
error: wildcard pattern covers any other pattern as it will match anyway
|
|
--> tests/ui/wild_in_or_pats.rs:35:9
|
|
|
|
|
LL | _ | "bar" => {
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider handling `_` separately
|
|
|
|
error: aborting due to 4 previous errors
|
|
|