rust/tests/compile-fail/dangling_pointers/wild_pointer_deref.rs
2020-04-11 11:36:55 +02:00

6 lines
158 B
Rust

fn main() {
let p = 44 as *const i32;
let x = unsafe { *p }; //~ ERROR invalid use of 44 as a pointer
panic!("this should never print: {}", x);
}