rust/tests/compile-fail/null_pointer_deref.rs

6 lines
190 B
Rust
Raw Normal View History

2021-04-15 03:00:39 -05:00
#[allow(deref_nullptr)]
fn main() {
2020-05-01 07:43:59 -05:00
let x: i32 = unsafe { *std::ptr::null() }; //~ ERROR inbounds test failed: 0x0 is not a valid pointer
panic!("this should never print: {}", x);
}