Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
use std::cell::UnsafeCell;
enum Foo { X(UnsafeCell<Option<Foo>>) }
//~^ ERROR recursive type `Foo` has infinite size
//~| ERROR cycle detected
impl Foo { fn bar(self) {} }
fn main() {}