struct Baz { q: Option } //~^ ERROR recursive type `Baz` has infinite size struct Foo { q: Option } //~^ ERROR recursive type `Foo` has infinite size impl Foo { fn bar(&self) {} } fn main() {}