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