1error[E0004]: non-exhaustive patterns: `ffi::A { repr: 2_u8..=u8::MAX }` not covered 2 --> tests/ui/enum_match_without_wildcard.rs:12:11 3 | 412 | match a { 5 | ^ pattern `ffi::A { repr: 2_u8..=u8::MAX }` not covered 6 | 7note: `ffi::A` defined here 8 --> tests/ui/enum_match_without_wildcard.rs:3:10 9 | 103 | enum A { 11 | ^ 12 = note: the matched value is of type `ffi::A` 13help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown 14 | 1514 ~ ffi::A::FieldB => 2021, 1615 ~ ffi::A { repr: 2_u8..=u8::MAX } => todo!(), 17 | 18