// check-pass trait Family { type Member<'a>: for<'b> PartialEq>; } struct I32; impl Family for I32 { type Member<'a> = i32; } fn main() {}