rust/tests/compile-fail/null_pointer_write.rs
2022-03-24 10:06:33 -04:00

5 lines
129 B
Rust

#[allow(deref_nullptr)]
fn main() {
unsafe { *std::ptr::null_mut() = 0i32 }; //~ ERROR null pointer is not a valid pointer
}