Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// build-pass
#![allow(dead_code)]
struct A {
a: &'static (),
}
static B: &'static A = &A { a: &() };
static C: &'static A = &B;
fn main() {}