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

#![feature(generic_associated_types)]

trait Family {
    type Member<'a>: for<'b> PartialEq<Self::Member<'b>>;
}

struct I32;

impl Family for I32 {
    type Member<'a> = i32;
}

fn main() {}