]> git.lizzy.rs Git - rust.git/blob - tests/ui/issue-94866.stderr
Rollup merge of #107482 - notriddle:notriddle/keywords, r=jsha
[rust.git] / tests / ui / issue-94866.stderr
1 error[E0004]: non-exhaustive patterns: `Enum::B` not covered
2   --> $DIR/issue-94866.rs:10:11
3    |
4 LL |     match Enum::A {
5    |           ^^^^^^^ pattern `Enum::B` not covered
6    |
7 note: `Enum` defined here
8   --> $DIR/issue-94866.rs:7:16
9    |
10 LL | enum Enum { A, B }
11    |      ----      ^ not covered
12    = note: the matched value is of type `Enum`
13 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
14    |
15 LL ~     Enum::A => m!(),
16 LL +     Enum::B => todo!()
17    |
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0004`.