2021-03-16 11:56:08 -05:00
|
|
|
error: wildcard match will also match any future added variants
|
2020-11-24 09:59:28 -06:00
|
|
|
--> $DIR/wildcard_enum_match_arm.rs:39:9
|
2019-01-25 10:42:11 -06:00
|
|
|
|
|
2019-02-18 16:55:16 -06:00
|
|
|
LL | _ => eprintln!("Not red"),
|
|
|
|
| ^ help: try this: `Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
|
2019-01-25 10:42:11 -06:00
|
|
|
|
|
2020-01-31 13:21:10 -06:00
|
|
|
note: the lint level is defined here
|
2019-09-21 00:26:18 -05:00
|
|
|
--> $DIR/wildcard_enum_match_arm.rs:3:9
|
2019-02-18 16:55:16 -06:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::wildcard_enum_match_arm)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-01-31 16:01:23 -06:00
|
|
|
|
2021-03-16 11:56:08 -05:00
|
|
|
error: wildcard match will also match any future added variants
|
2020-11-24 09:59:28 -06:00
|
|
|
--> $DIR/wildcard_enum_match_arm.rs:43:9
|
2019-01-31 16:01:23 -06:00
|
|
|
|
|
2019-02-18 16:55:16 -06:00
|
|
|
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`
|
2019-01-31 16:01:23 -06:00
|
|
|
|
2021-03-16 11:56:08 -05:00
|
|
|
error: wildcard match will also match any future added variants
|
2020-11-24 09:59:28 -06:00
|
|
|
--> $DIR/wildcard_enum_match_arm.rs:47:9
|
2019-01-31 16:01:23 -06:00
|
|
|
|
|
2019-02-18 16:55:16 -06:00
|
|
|
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`
|
2019-01-31 16:01:23 -06:00
|
|
|
|
2021-03-16 11:56:08 -05:00
|
|
|
error: wildcard match will also match any future added variants
|
2020-11-24 09:59:28 -06:00
|
|
|
--> $DIR/wildcard_enum_match_arm.rs:63:9
|
2019-01-25 10:42:11 -06:00
|
|
|
|
|
2019-02-18 16:55:16 -06:00
|
|
|
LL | _ => "No red",
|
|
|
|
| ^ help: try this: `Color::Red | Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
|
2019-01-25 10:42:11 -06:00
|
|
|
|
2021-03-16 11:56:08 -05:00
|
|
|
error: wildcard matches known variants and will also match future added variants
|
2020-11-24 09:59:28 -06:00
|
|
|
--> $DIR/wildcard_enum_match_arm.rs:80:9
|
2019-12-21 20:13:39 -06:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
2021-03-06 18:25:09 -06:00
|
|
|
| ^ help: try this: `ErrorKind::PermissionDenied | ErrorKind::ConnectionRefused | ErrorKind::ConnectionReset | ErrorKind::ConnectionAborted | ErrorKind::NotConnected | ErrorKind::AddrInUse | ErrorKind::AddrNotAvailable | ErrorKind::BrokenPipe | ErrorKind::AlreadyExists | ErrorKind::WouldBlock | ErrorKind::InvalidInput | ErrorKind::InvalidData | ErrorKind::TimedOut | ErrorKind::WriteZero | ErrorKind::Interrupted | ErrorKind::Other | ErrorKind::UnexpectedEof | _`
|
2019-12-21 20:13:39 -06:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2019-01-25 10:42:11 -06:00
|
|
|
|