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