summaryrefslogtreecommitdiffstats
path: root/tests/pretty/raw-address-of.rs
blob: 6ccc434a1e79ca1ce0741d9509aec476fe7b1f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// pp-exact
#![feature(raw_ref_op)]

const C_PTR: () = { let a = 1; &raw const a; };
static S_PTR: () = { let b = false; &raw const b; };

fn main() {
    let x = 123;
    let mut y = 345;
    let c_p = &raw const x;
    let parens = unsafe { *(&raw mut (y)) };
}