RosettaCodeData/Task/Address-of-a-variable/Rust/address-of-a-variable-4.rust
2017-09-25 22:28:19 +02: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);
}