rust-clippy/tests/ui/match_wildcard_for_single_variants.stderr

65 lines
2.2 KiB
Text
Raw Normal View History

error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:22:13
|
LL | _ => (),
2023-07-01 11:08:01 +00:00
| ^ help: try: `Self::Rgb(..)`
|
= note: `-D clippy::match-wildcard-for-single-variants` implied by `-D warnings`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:32:9
|
LL | _ => {},
2023-07-01 11:08:01 +00:00
| ^ help: try: `Foo::C`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:42:9
|
LL | _ => {},
2023-07-01 11:08:01 +00:00
| ^ help: try: `Color::Blue`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:50:9
|
LL | _ => {},
2023-07-01 11:08:01 +00:00
| ^ help: try: `Color::Blue`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:56:9
|
LL | _ => {},
2023-07-01 11:08:01 +00:00
| ^ help: try: `Color::Blue`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:73:9
|
LL | &_ => (),
2023-07-01 11:08:01 +00:00
| ^^ help: try: `Color::Blue`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:82:9
|
LL | _ => (),
2023-07-01 11:08:01 +00:00
| ^ help: try: `C::Blue`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:89:9
|
LL | _ => (),
2023-07-01 11:08:01 +00:00
| ^ help: try: `Color::Blue`
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:124:13
|
LL | _ => (),
2023-07-01 11:08:01 +00:00
| ^ help: try: `Enum::__Private`
2022-12-11 03:20:46 +00:00
error: wildcard matches only a single variant and will also match any future added variants
2023-07-27 11:40:22 +00:00
--> $DIR/match_wildcard_for_single_variants.rs:151:13
2022-12-11 03:20:46 +00:00
|
LL | _ => 2,
2023-07-01 11:08:01 +00:00
| ^ help: try: `Foo::B`
2022-12-11 03:20:46 +00:00
error: aborting due to 10 previous errors