summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/min_const_fn/address_of_const.rs
blob: 3db19e9cde8f069c97dde9ab4f03adc46ea568d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// check-pass

#![feature(raw_ref_op)]

const fn const_address_of_in_const() {
    let mut a = 0;
    let b = &raw const a;
}

struct X;

impl X {
    const fn inherent_const_address_of_in_const() {
        let mut a = 0;
        let b = &raw const a;
    }
}

fn main() {}