2021-03-25 06:44:30 -05:00
|
|
|
// Some optimizations remove ZST accesses, thus masking this UB.
|
|
|
|
// compile-flags: -Zmir-opt-level=0
|
|
|
|
|
2021-04-15 03:00:39 -05:00
|
|
|
#[allow(deref_nullptr)]
|
2018-09-15 09:35:37 -05:00
|
|
|
fn main() {
|
2022-03-10 17:56:19 -06:00
|
|
|
let x: () = unsafe { *std::ptr::null() }; //~ ERROR dereferencing pointer failed: null pointer is not a valid pointer
|
2018-09-15 09:35:37 -05:00
|
|
|
panic!("this should never print: {:?}", x);
|
|
|
|
}
|