summary refs log tree commit diff
path: root/src/test/ui/structs/struct-like-enum-nonexhaustive.stderr
blob: 56dbf0c93baf0b15b90fda3387e9ba0688ed28e2 (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:18: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`.