Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![allow(warnings)]
trait Trait<T> {
fn foo(_: T) {}
}
pub struct Foo<T = Box<Trait<DefaultFoo>>>; //~ ERROR cycle detected
type DefaultFoo = Foo;
fn main() {