blob: 6dce556e9e3849c0488e5e03bf88cac052d9c4ca [file] [log] [blame]
// build-pass
#![allow(dead_code)]
struct A {
a: &'static (),
}
static B: &'static A = &A { a: &() };
static C: &'static A = &B;
fn main() {}