summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-87429-associated-type-default.rs
blob: 2006f9bc74dfebd1e90e44769ab80e8b5102ac38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// check-fail

#![feature(associated_type_defaults)]

trait Family {
    // Fine, i32: PartialEq<i32>
    type Member<'a>: for<'b> PartialEq<Self::Member<'b>> = i32;
}

struct Foo;
trait Family2 {
    // Not fine, not Foo: PartialEq<Foo>
    type Member<'a>: for<'b> PartialEq<Self::Member<'b>> = Foo;
    //~^ ERROR can't compare
}

fn main() {}