mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
65 lines
2.3 KiB
Text
65 lines
2.3 KiB
Text
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
|
|
|