2021-03-25 18:29:11 +00:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:24:13
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
LL | _ => (),
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Self::Rgb(..)`
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2020-05-28 13:45:24 +00:00
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:34:9
|
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
LL | _ => {},
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Foo::C`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:44:9
|
|
|
|
|
|
2020-05-28 13:45:24 +00:00
|
|
|
LL | _ => {},
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Color::Blue`
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:52:9
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Color::Blue`
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:58:9
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Color::Blue`
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
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 | &_ => (),
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^ help: try: `Color::Blue`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
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 | _ => (),
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `C::Blue`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
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 | _ => (),
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Color::Blue`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
2023-02-10 13:01:19 +00:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
|
|
|
--> $DIR/match_wildcard_for_single_variants.rs:126:13
|
|
|
|
|
|
|
|
|
LL | _ => (),
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Enum::__Private`
|
2023-02-10 13:01:19 +00:00
|
|
|
|
2022-12-29 13:28:34 +00:00
|
|
|
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,
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^ help: try: `Foo::B`
|
2022-12-29 13:28:34 +00:00
|
|
|
|
2023-02-10 13:01:19 +00:00
|
|
|
error: aborting due to 10 previous errors
|
2020-05-28 13:45:24 +00:00
|
|
|
|