2021-03-25 19:29:11 +01:00
|
|
|
error: wildcard match will also match any future added variants
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:39:9
|
2019-01-25 10:42:11 -06:00
|
|
|
|
|
2019-02-18 22:55:16 +00:00
|
|
|
LL | _ => eprintln!("Not red"),
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^ help: try: `Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
|
2019-01-25 10:42:11 -06:00
|
|
|
|
|
2020-01-31 20:21:10 +01:00
|
|
|
note: the lint level is defined here
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:2:9
|
2019-02-18 22:55:16 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::wildcard_enum_match_arm)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-01-31 22:01:23 +00:00
|
|
|
|
2021-03-25 19:29:11 +01:00
|
|
|
error: wildcard match will also match any future added variants
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:43:9
|
2019-01-31 22:01:23 +00:00
|
|
|
|
|
2019-02-18 22:55:16 +00:00
|
|
|
LL | _not_red => eprintln!("Not red"),
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^^^^^^^^ help: try: `_not_red @ Color::Green | _not_red @ Color::Blue | _not_red @ Color::Rgb(..) | _not_red @ Color::Cyan`
|
2019-01-31 22:01:23 +00:00
|
|
|
|
2021-03-25 19:29:11 +01:00
|
|
|
error: wildcard match will also match any future added variants
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:47:9
|
2019-01-31 22:01:23 +00:00
|
|
|
|
|
2019-02-18 22:55:16 +00:00
|
|
|
LL | not_red => format!("{:?}", not_red),
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^^^^^^^ help: try: `not_red @ Color::Green | not_red @ Color::Blue | not_red @ Color::Rgb(..) | not_red @ Color::Cyan`
|
2019-01-31 22:01:23 +00:00
|
|
|
|
2021-03-25 19:29:11 +01:00
|
|
|
error: wildcard match will also match any future added variants
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:63:9
|
2019-01-25 10:42:11 -06:00
|
|
|
|
|
2019-02-18 22:55:16 +00:00
|
|
|
LL | _ => "No red",
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^ help: try: `Color::Red | Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
|
2019-01-25 10:42:11 -06:00
|
|
|
|
2021-03-25 19:29:11 +01:00
|
|
|
error: wildcard matches known variants and will also match future added variants
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:80:9
|
2019-12-22 02:13:39 +00:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^ help: try: `ErrorKind::PermissionDenied | _`
|
2019-12-22 02:13:39 +00:00
|
|
|
|
2023-02-10 14:01:19 +01:00
|
|
|
error: wildcard match will also match any future added variants
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/wildcard_enum_match_arm.rs:98:13
|
2021-07-01 18:17:38 +02:00
|
|
|
|
|
|
|
|
LL | _ => (),
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^ help: try: `Enum::B | Enum::__Private`
|
2021-07-01 18:17:38 +02:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2019-01-25 10:42:11 -06:00
|
|
|
|