rust/tests/compile-fail/null_pointer_write_zst.rs

12 lines
471 B
Rust
Raw Normal View History

2021-03-25 06:44:30 -05:00
// Some optimizations remove ZST accesses, thus masking this UB.
// compile-flags: -Zmir-opt-level=0
2021-07-15 13:33:08 -05:00
// error-pattern: memory access failed: 0x0 is not a valid pointer
2021-03-25 06:44:30 -05:00
2021-04-15 03:00:39 -05:00
#[allow(deref_nullptr)]
fn main() {
// Not using the () type here, as writes of that type do not even have MIR generated.
// Also not assigning directly as that's array initialization, not assignment.
let zst_val = [1u8; 0];
2021-07-15 13:33:08 -05:00
unsafe { std::ptr::null_mut::<[u8; 0]>().write(zst_val) };
}