summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/normalize-param-env-2.rs
blob: 7c2cebdd2002f942afbe5ef7d35408c94702ebdd (plain)
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() {}