// This should fail even without validation //@compile-flags: -Zmiri-disable-validation #![feature(never_type)] struct Human; fn main() { let _x: ! = unsafe { std::mem::transmute::(Human) //~ ERROR: transmuting to uninhabited }; }