]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/usefulness/struct-like-enum-nonexhaustive.stderr
Auto merge of #78682 - glandium:issue78471, r=lcnr
[rust.git] / src / test / ui / pattern / usefulness / struct-like-enum-nonexhaustive.stderr
1 error[E0004]: non-exhaustive patterns: `B { x: Some(_) }` not covered
2   --> $DIR/struct-like-enum-nonexhaustive.rs:8:11
3    |
4 LL | / enum A {
5 LL | |     B { x: Option<isize> },
6    | |     - not covered
7 LL | |     C
8 LL | | }
9    | |_- `A` defined here
10 ...
11 LL |       match x {
12    |             ^ pattern `B { x: Some(_) }` not covered
13    |
14    = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
15    = note: the matched value is of type `A`
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0004`.