blob: 9ed97f63177f07f8b8d97aeaa876c68d86be327a [file] [log] [blame]
struct Baz { q: Option<Foo> }
//~^ ERROR recursive type `Baz` has infinite size
struct Foo { q: Option<Baz> }
//~^ ERROR recursive type `Foo` has infinite size
impl Foo { fn bar(&self) {} }
fn main() {}