Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
// compile-flags: -Znext-solver
// Issue 92505
trait A<T> {
type I;
fn f()
where
Self::I: A<T>,
{
}
impl<T> A<T> for () {
type I = ();
<() as A<T>>::f();
fn main() {}