trpl-zh-cn/listings/ch20-advanced-features/listing-20-02/src/main.rs

7 lines
126 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let address = 0x012345usize;
let r = address as *const i32;
// ANCHOR_END: here
}