summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/associated-types-projection-in-where-clause.rs
blob: e9a26e53c3c7dc4dca08501414b5494566525734 (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
27
28
29
30
31
// run-pass
#![allow(dead_code)]
#![allow(unused_variables)]
// Test a where clause that uses a non-normalized projection type.

// pretty-expanded FIXME #23616

trait Int
{
    type T;

    fn dummy(&self) { }
}

trait NonZero
{
    fn non_zero(self) -> bool;
}

fn foo<I:Int<T=J>,J>(t: I) -> bool
    where <I as Int>::T : NonZero
    //    ^~~~~~~~~~~~~ canonical form is just J
{
    bar::<J>()
}

fn bar<NZ:NonZero>() -> bool { true }

fn main ()
{
}