blob: d651ea0b4e2d761f30c8e7c630fb26ae12200a0b (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0004]: non-exhaustive patterns: `B { x: Some(_) }` not covered
--> $DIR/struct-like-enum-nonexhaustive.rs:8:11
|
LL | match x { //~ ERROR non-exhaustive patterns
| ^ pattern `B { x: Some(_) }` not covered
error: aborting due to previous error
For more information about this error, try `rustc --explain E0004`.
|