Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
generic-associated-types
/
issue-92954.rs
blob: 926ebd897eb69f0fa2e363e2b7c87c407580a994 [
file
]
//@ check-pass
pub
trait
Foo
{
type
Assoc
<
'
c
>;
fn
function
()
->
for
<
'x> fn(Self::Assoc<'
x
>);
}
fn
main
()
{}