1 2 3 4 5 6 7 8 9 10 11 12
enum A { B { x: Option<isize> }, C } fn main() { let x = A::B { x: Some(3) }; match x { //~ ERROR non-exhaustive patterns A::C => {} A::B { x: None } => {} } }