7 lines
328 B
Rust
7 lines
328 B
Rust
|
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];
|
||
|
unsafe { *std::ptr::null_mut() = zst_val }; //~ ERROR constant evaluation error: invalid use of NULL pointer
|
||
|
}
|