mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-16 08:28:09 +08:00
7 lines
126 B
Rust
7 lines
126 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let address = 0x012345usize;
|
||
|
let r = address as *const i32;
|
||
|
// ANCHOR_END: here
|
||
|
}
|