mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
15 lines
429 B
Text
15 lines
429 B
Text
error: wildcard match will miss any future added variants.
|
|
--> $DIR/wildcard_enum_match_arm.rs:26:9
|
|
|
|
|
LL | _ => eprintln!("Not red"),
|
|
| ^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/wildcard_enum_match_arm.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::wildcard_enum_match_arm)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: to resolve, match each variant explicitly
|
|
|
|
error: aborting due to previous error
|
|
|