blob: ccb43fc88f3a95d3fc69a0afc484fc9fe5b7de00 [file] [log] [blame]
//@ check-pass
trait Family {
type Member<'a>: for<'b> PartialEq<Self::Member<'b>>;
}
struct I32;
impl Family for I32 {
type Member<'a> = i32;
}
fn main() {}