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