blob: ea89e4cbdeb8813746e7d1a3fca1dda5dc5d59d9 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
struct A {
a: &'static (),
}
static B: &'static A = &A { a: &() };
static C: &'static A = &B;
fn main() {}