blob: 8f2bec889eac5900adbbda2291309fa51139af18 [file] [log] [blame]
trait A {
type T;
}
trait B: A<T: B> {}
//~^ ERROR cycle detected when computing the implied predicates of `B`
fn main() {}