rustc/tests/ui/consts/static-cycle-error.rs
2023-08-02 10:33:26 +02:00

12 lines
123 B
Rust

// check-pass
struct Foo {
foo: Option<&'static Foo>
}
static FOO: Foo = Foo {
foo: Some(&FOO),
};
fn main() {}