rust-clippy/tests/ui/wild_in_or_pats.stderr

29 lines
1 KiB
Text
Raw Normal View History

2020-01-02 19:00:27 +00:00
error: wildcard pattern covers any other pattern as it will match anyway.
--> $DIR/wild_in_or_pats.rs:10:9
|
LL | "bar" | _ => {
2020-01-02 19:00:27 +00:00
| ^^^^^^^^^ help: consider replacing with wildcard pattern only: `_`
|
= note: `-D clippy::wildcard-in-or-patterns` implied by `-D warnings`
2020-01-02 19:00:27 +00:00
error: wildcard pattern covers any other pattern as it will match anyway.
--> $DIR/wild_in_or_pats.rs:18:9
|
LL | "bar" | "bar2" | _ => {
2020-01-02 19:00:27 +00:00
| ^^^^^^^^^^^^^^^^^^ help: consider replacing with wildcard pattern only: `_`
2020-01-02 19:00:27 +00:00
error: wildcard pattern covers any other pattern as it will match anyway.
--> $DIR/wild_in_or_pats.rs:26:9
|
LL | _ | "bar" | _ => {
2020-01-02 19:00:27 +00:00
| ^^^^^^^^^^^^^ help: consider replacing with wildcard pattern only: `_`
2020-01-02 19:00:27 +00:00
error: wildcard pattern covers any other pattern as it will match anyway.
--> $DIR/wild_in_or_pats.rs:34:9
|
LL | _ | "bar" => {
2020-01-02 19:00:27 +00:00
| ^^^^^^^^^ help: consider replacing with wildcard pattern only: `_`
error: aborting due to 4 previous errors