Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait Trait {
type A;
type B;
}
fn foo<T: Trait<A = T::B>>() { }
//~^ ERROR cycle detected
fn main() { }