mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
bcefd688c9
Also, fix existing test
32 lines
1.3 KiB
Text
32 lines
1.3 KiB
Text
error: wildcard match will miss any future added variants.
|
|
--> $DIR/wildcard_enum_match_arm.rs:26:9
|
|
|
|
|
LL | _ => eprintln!("Not red"),
|
|
| ^ help: try this: `Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/wildcard_enum_match_arm.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::wildcard_enum_match_arm)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: wildcard match will miss any future added variants.
|
|
--> $DIR/wildcard_enum_match_arm.rs:30:9
|
|
|
|
|
LL | _not_red => eprintln!("Not red"),
|
|
| ^^^^^^^^ help: try this: `_not_red @ Color::Green | _not_red @ Color::Blue | _not_red @ Color::Rgb(..) | _not_red @ Color::Cyan`
|
|
|
|
error: wildcard match will miss any future added variants.
|
|
--> $DIR/wildcard_enum_match_arm.rs:34:9
|
|
|
|
|
LL | not_red => format!("{:?}", not_red),
|
|
| ^^^^^^^ help: try this: `not_red @ Color::Green | not_red @ Color::Blue | not_red @ Color::Rgb(..) | not_red @ Color::Cyan`
|
|
|
|
error: wildcard match will miss any future added variants.
|
|
--> $DIR/wildcard_enum_match_arm.rs:50:9
|
|
|
|
|
LL | _ => "No red",
|
|
| ^ help: try this: `Color::Red | Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|