Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs-enums
/
struct-rec
/
issue-17431-1.rs
blob: 3b692cc0eeb595e0f3254db1c76d5cfc3376aaaa [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
{
foo
:
Option
<
Option
<
Foo
>>
}
//~^ ERROR recursive type `Foo` has infinite size
impl
Foo
{
fn
bar
(&
self
)
{}
}
fn
main
()
{}