Sign in
fuchsia
/
third_party
/
rust
/
5fca4bd6d47ef61d860129bcd4efe4f413b78143
/
.
/
tests
/
ui
/
sized-cycle-note.rs
blob: 766a5fa0de3dc6f0fb4de3c79d6a5471f40277cf [
file
]
struct
Baz
{
q
:
Option
<
Foo
>
}
//~^ ERROR recursive types `Baz` and `Foo` have infinite size
struct
Foo
{
q
:
Option
<
Baz
>
}
impl
Foo
{
fn
bar
(&
self
)
{}
}
fn
main
()
{}