2021-04-15 10:00:39 +02:00
|
|
|
#[allow(deref_nullptr)]
|
2016-06-13 14:27:05 +02:00
|
|
|
fn main() {
|
2022-07-11 11:44:55 +00:00
|
|
|
let x: i32 = unsafe { *std::ptr::null() }; //~ ERROR: null pointer is a dangling pointer
|
2016-06-13 14:27:05 +02:00
|
|
|
panic!("this should never print: {}", x);
|
|
|
|
}
|