1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
// check-pass // compile-flags: -Ztrait-solver=next // Issue 92505 trait A<T> { type I; fn f() where Self::I: A<T>, { } } impl<T> A<T> for () { type I = (); fn f() where Self::I: A<T>, { <() as A<T>>::f(); } } fn main() {}