blob: 2e6be8b971c6480593a09327c01e589af8c4f40e [file] [log] [blame]
#![feature(never_type)]
use std::mem::{forget, transmute};
fn main() {
unsafe {
let x: Box<!> = transmute(&mut 42); //~ERROR: encountered a box pointing to uninhabited type !
forget(x);
}
}