error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:22:13
   |
LL |             _ => (),
   |             ^ help: try: `Self::Rgb(..)`
   |
   = note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::match_wildcard_for_single_variants)]`

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

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

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

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

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

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

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

error: wildcard matches only a single variant and will also match any future added variants
  --> $DIR/match_wildcard_for_single_variants.rs:124:13
   |
LL |             _ => (),
   |             ^ help: try: `Enum::__Private`

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

error: aborting due to 10 previous errors