summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/wild_in_or_pats.stderr
blob: bd5860f45ca6862d33b17b22662f83ddc5293b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
error: wildcard pattern covers any other pattern as it will match anyway
  --> $DIR/wild_in_or_pats.rs:8:9
   |
LL |         "bar" | _ => {
   |         ^^^^^^^^^
   |
   = help: consider handling `_` separately
   = note: `-D clippy::wildcard-in-or-patterns` implied by `-D warnings`

error: wildcard pattern covers any other pattern as it will match anyway
  --> $DIR/wild_in_or_pats.rs:16:9
   |
LL |         "bar" | "bar2" | _ => {
   |         ^^^^^^^^^^^^^^^^^^
   |
   = help: consider handling `_` separately

error: wildcard pattern covers any other pattern as it will match anyway
  --> $DIR/wild_in_or_pats.rs:24:9
   |
LL |         _ | "bar" | _ => {
   |         ^^^^^^^^^^^^^
   |
   = help: consider handling `_` separately

error: wildcard pattern covers any other pattern as it will match anyway
  --> $DIR/wild_in_or_pats.rs:32:9
   |
LL |         _ | "bar" => {
   |         ^^^^^^^^^
   |
   = help: consider handling `_` separately

error: aborting due to 4 previous errors