2020-05-09 21:08:41 +00:00
|
|
|
error: wildcard match will miss any future added variants
|
2020-05-15 21:19:30 +00:00
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:24:9
|
2020-05-09 21:08:41 +00:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
|
|
|
| ^ help: try this: `Foo::C`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`
|
|
|
|
|
2020-05-15 21:19:30 +00:00
|
|
|
error: wildcard match will miss any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:34:9
|
|
|
|
|
|
|
|
|
LL | _ => {},
|
|
|
|
| ^ help: try this: `Color::Blue`
|
|
|
|
|
|
|
|
error: wildcard match will miss any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:42:9
|
|
|
|
|
|
|
|
|
LL | _ => {},
|
|
|
|
| ^ help: try this: `Color::Blue`
|
|
|
|
|
|
|
|
error: wildcard match will miss any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:48:9
|
|
|
|
|
|
|
|
|
LL | _ => {},
|
|
|
|
| ^ help: try this: `Color::Blue`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2020-05-09 21:08:41 +00:00
|
|
|
|