// Validation makes this fail in the wrong place // compile-flags: -Zmir-emit-validate=0 #[repr(C)] pub enum Foo { A, B, C, D } fn main() { let f = unsafe { std::mem::transmute::(42) }; match f { Foo::A => {}, Foo::B => {}, Foo::C => {}, Foo::D => {}, } } //~ ERROR constant evaluation error //~^ NOTE entered unreachable code