rust/tests/fail/dangling_pointers/null_pointer_deref.rs

6 lines
176 B
Rust
Raw Normal View History

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