rust-clippy/tests/ui/wild_in_or_pats.stderr

53 lines
1.6 KiB
Text
Raw Normal View History

error: wildcard pattern covers any other pattern as it will match anyway
2024-02-17 12:16:29 +00:00
--> tests/ui/wild_in_or_pats.rs:8:9
|
LL | "bar" | _ => {
2020-01-07 17:13:31 +00:00
| ^^^^^^^^^
|
= help: consider handling `_` separately
2022-09-22 16:04:22 +00:00
= 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
2024-02-17 12:16:29 +00:00
--> tests/ui/wild_in_or_pats.rs:17:9
|
LL | "bar" | "bar2" | _ => {
2020-01-07 17:13:31 +00:00
| ^^^^^^^^^^^^^^^^^^
|
= help: consider handling `_` separately
error: wildcard pattern covers any other pattern as it will match anyway
2024-02-17 12:16:29 +00:00
--> tests/ui/wild_in_or_pats.rs:26:9
|
LL | _ | "bar" | _ => {
2020-01-07 17:13:31 +00:00
| ^^^^^^^^^^^^^
|
= help: consider handling `_` separately
error: wildcard pattern covers any other pattern as it will match anyway
2024-02-17 12:16:29 +00:00
--> tests/ui/wild_in_or_pats.rs:35:9
|
LL | _ | "bar" => {
2020-01-07 17:13:31 +00:00
| ^^^^^^^^^
|
= help: consider handling `_` separately
error: wildcard pattern covers any other pattern as it will match anyway
--> tests/ui/wild_in_or_pats.rs:69:9
|
LL | ExhaustiveEnum::Quit | _ => {
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider handling `_` separately
error: wildcard pattern covers any other pattern as it will match anyway
--> tests/ui/wild_in_or_pats.rs:104:9
|
LL | ExhaustiveStruct { x: 1, y: 1 } | _ => {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider handling `_` separately
error: aborting due to 6 previous errors