summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-region-ptrs-noncopy.rs
blob: 10b9ce896a65e236f598dad141e5c8dd4d98596e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]

type Big = [u64; 8];
struct Pair<'a> { a: isize, b: &'a Big }
const x: &'static Big = &([13, 14, 10, 13, 11, 14, 14, 15]);
const y: &'static Pair<'static> = &Pair {a: 15, b: x};

pub fn main() {
    assert_eq!(x as *const Big, y.b as *const Big);
}