]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/static-cycle-error.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / static-cycle-error.rs
1 // check-pass
2
3 struct Foo {
4 foo: Option<&'static Foo>
5 }
6
7 static FOO: Foo = Foo {
8 foo: Some(&FOO),
9 };
10
11 fn main() {}