DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb12u2 / tests / ui / consts / static-cycle-error.rs
1234567891011
// check-pass struct Foo { foo: Option<&'static Foo> } static FOO: Foo = Foo { foo: Some(&FOO), }; fn main() {}