DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / associated-type-bounds / implied-bounds-cycle.rs
12345678
trait A { type T; } trait B: A<T: B> {} //~^ ERROR cycle detected when computing the implied predicates of `B` fn main() {}