rust/tests/compile-fail/dangling_pointer_deref.rs
2018-10-19 12:29:49 +02:00

9 lines
208 B
Rust

fn main() {
let p = {
let b = Box::new(42);
&*b as *const i32
};
let x = unsafe { *p }; //~ ERROR dangling pointer was dereferenced
panic!("this should never print: {}", x);
}