summaryrefslogtreecommitdiffstats
path: root/src/doc/book/listings/ch19-advanced-features/listing-19-01/src/main.rs
blob: 893f5789056749b8916e8ddcadee8e3d4d24b808 (plain)
1
2
3
4
5
6
7
8
fn main() {
    // ANCHOR: here
    let mut num = 5;

    let r1 = &num as *const i32;
    let r2 = &mut num as *mut i32;
    // ANCHOR_END: here
}