rust/tests/compile-fail/int_ptr_cast2.rs

6 lines
165 B
Rust
Raw Normal View History

2017-06-22 23:01:24 -05:00
fn main() {
let x = 0usize as *const u32;
// This must fail because the pointer is NULL
let _ = unsafe { &*x }; //~ ERROR: invalid use of NULL pointer
}