2022-05-17 10:36:34 -05:00
|
|
|
#![feature(never_type)]
|
2022-06-21 13:27:44 -05:00
|
|
|
use std::mem::{forget, transmute};
|
2022-05-17 10:36:34 -05:00
|
|
|
|
2022-06-21 13:27:44 -05:00
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
let x: Box<!> = transmute(&mut 42); //~ERROR encountered a box pointing to uninhabited type !
|
|
|
|
forget(x);
|
|
|
|
}
|
|
|
|
}
|