rust/tests/compile-fail/null_pointer_write.rs

4 lines
97 B
Rust
Raw Normal View History

fn main() {
2019-04-21 06:18:05 -05:00
unsafe { *std::ptr::null_mut() = 0i32 }; //~ ERROR invalid use of NULL pointer
}