rust/tests/ui/consts/static-cycle-error.rs
2023-01-11 09:32:08 +00:00

12 lines
123 B
Rust

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