2021-03-25 13:29:11 -05:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:22:13
|
2020-05-28 08:45:24 -05:00
|
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
LL | _ => (),
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Self::Rgb(..)`
|
2020-05-28 08:45:24 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::match_wildcard_for_single_variants)]`
|
2020-05-28 08:45:24 -05:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:32:9
|
2020-05-28 08:45:24 -05:00
|
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
LL | _ => {},
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Foo::C`
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:42:9
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
2020-05-28 08:45:24 -05:00
|
|
|
LL | _ => {},
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Color::Blue`
|
2020-05-28 08:45:24 -05:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:50:9
|
2020-05-28 08:45:24 -05:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Color::Blue`
|
2020-05-28 08:45:24 -05:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:56:9
|
2020-05-28 08:45:24 -05:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Color::Blue`
|
2020-05-28 08:45:24 -05:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:73:9
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
|
|
|
LL | &_ => (),
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^^ help: try: `Color::Blue`
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:82:9
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
|
|
|
LL | _ => (),
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `C::Blue`
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:89:9
|
2021-03-25 13:29:11 -05:00
|
|
|
|
|
|
|
|
LL | _ => (),
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Color::Blue`
|
2021-03-25 13:29:11 -05:00
|
|
|
|
2023-02-10 07:01:19 -06:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:124:13
|
2023-02-10 07:01:19 -06:00
|
|
|
|
|
|
|
|
LL | _ => (),
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Enum::__Private`
|
2023-02-10 07:01:19 -06:00
|
|
|
|
2022-12-29 07:28:34 -06:00
|
|
|
error: wildcard matches only a single variant and will also match any future added variants
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/match_wildcard_for_single_variants.rs:151:13
|
2022-12-29 07:28:34 -06:00
|
|
|
|
|
|
|
|
LL | _ => 2,
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^ help: try: `Foo::B`
|
2022-12-29 07:28:34 -06:00
|
|
|
|
2023-02-10 07:01:19 -06:00
|
|
|
error: aborting due to 10 previous errors
|
2020-05-28 08:45:24 -05:00
|
|
|
|