Sign in
◑
Theme
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
consts
/
static-cycle-error.rs
blob: b23872ed509f555ac15d040ce1fd7cd589d5f1c6 [
file
]
//@ check-pass
struct
Foo
{
foo
:
Option
<&
'
static
Foo
>
}
static
FOO
:
Foo
=
Foo
{
foo
:
Some
(&
FOO
),
};
fn
main
()
{}