blob: 10b9ce896a65e236f598dad141e5c8dd4d98596e [file] [log] [blame]
// 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);
}