Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
generic-associated-types
/
issue-87429.rs
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
()
{}