Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
sized-cycle-note.rs
blob: 766a5fa0de3dc6f0fb4de3c79d6a5471f40277cf [
file
] [
log
] [
blame
] [
edit
]
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
()
{}