summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_wildcard_for_single_variants.stderr
blob: 6fa313dc9111445e6bd402bcad17dd5f1ecc020b (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:24:13
   |
LL |             _ => (),
   |             ^ help: try this: `Self::Rgb(..)`
   |
   = note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:34:9
   |
LL |         _ => {},
   |         ^ help: try this: `Foo::C`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:44:9
   |
LL |         _ => {},
   |         ^ help: try this: `Color::Blue`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:52:9
   |
LL |         _ => {},
   |         ^ help: try this: `Color::Blue`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:58:9
   |
LL |         _ => {},
   |         ^ help: try this: `Color::Blue`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:75:9
   |
LL |         &_ => (),
   |         ^^ help: try this: `Color::Blue`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:84:9
   |
LL |         _ => (),
   |         ^ help: try this: `C::Blue`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:91:9
   |
LL |         _ => (),
   |         ^ help: try this: `Color::Blue`

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:153:13
   |
LL |             _ => 2,
   |             ^ help: try this: `Foo::B`

error: aborting due to 9 previous errors