rust/tests/ui/match_wildcard_for_single_variants.stderr

11 lines
308 B
Text
Raw Normal View History

error: wildcard match will miss any future added variants
--> $DIR/match_wildcard_for_single_variants.rs:16:9
|
LL | _ => {},
| ^ help: try this: `Foo::C`
|
= note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`
error: aborting due to previous error