13 lines
259 B
Rust
13 lines
259 B
Rust
// 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, !>(Human) //~ ERROR transmuting to uninhabited
|
|
};
|
|
}
|