trpl-zh-cn/listings/ch20-advanced-features/listing-20-02/src/main.rs
2024-10-20 23:44:05 +08:00

7 lines
126 B
Rust

fn main() {
// ANCHOR: here
let address = 0x012345usize;
let r = address as *const i32;
// ANCHOR_END: here
}