Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Baz { q: Option<Foo> }
//~^ ERROR recursive types `Baz` and `Foo` have infinite size
struct Foo { q: Option<Baz> }
impl Foo { fn bar(&self) {} }
fn main() {}