RosettaCodeData/Task/Address-of-a-variable/Rust/address-of-a-variable-4.rust
2023-07-01 13:44:08 -04:00

5 lines
237 B
Text

unsafe {
*(0x7ffc8f303130 as *mut usize) = 1;
// Note that this invokes undefined behavior if 0x7ffc8f303130 is uninitialized. In that case, std::ptr::write should be used.
std::ptr::write(0x7ffc8f303130 as *mut usize, 1);
}