2022-09-02 22:01:35 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: `Enum::B` not covered
|
2022-06-19 18:27:26 -05:00
|
|
|
--> $DIR/issue-94866.rs:10:11
|
|
|
|
|
|
|
|
|
LL | match Enum::A {
|
2022-09-02 22:01:35 -05:00
|
|
|
| ^^^^^^^ pattern `Enum::B` not covered
|
2022-06-19 18:27:26 -05:00
|
|
|
|
|
|
|
|
note: `Enum` defined here
|
2023-10-29 00:50:59 -05:00
|
|
|
--> $DIR/issue-94866.rs:7:6
|
2022-06-19 18:27:26 -05:00
|
|
|
|
|
|
|
|
LL | enum Enum { A, B }
|
2023-10-29 00:50:59 -05:00
|
|
|
| ^^^^ - not covered
|
2022-06-19 18:27:26 -05:00
|
|
|
= note: the matched value is of type `Enum`
|
|
|
|
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
|
|
|
|
|
|
|
|
LL ~ Enum::A => m!(),
|
2022-09-02 22:01:35 -05:00
|
|
|
LL + Enum::B => todo!()
|
2022-06-19 18:27:26 -05:00
|
|
|
|
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-06-19 18:27:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|