rust/tests/compile-fail/dangling_pointers/null_pointer_deref_zst.rs
2022-05-23 12:19:42 +02:00

9 lines
310 B
Rust

// Some optimizations remove ZST accesses, thus masking this UB.
// compile-flags: -Zmir-opt-level=0
#[allow(deref_nullptr)]
fn main() {
let x: () = unsafe { *std::ptr::null() }; //~ ERROR dereferencing pointer failed: null pointer is not a valid pointer
panic!("this should never print: {:?}", x);
}