Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
higher-ranked
/
trait-bounds
/
issue-60283.rs
blob: ce1554b3290f016109450c4b9d8b1097666e140b [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
pub
trait
Trait
<
'
a
>
{
type
Item
;
}
impl
<
'a> Trait<'
a
>
for
()
{
type
Item
=
();
}
pub
fn
foo
<
T
,
F
>(
_
:
T
,
_
:
F
)
where
T
:
for
<
'a> Trait<'
a
>,
F
:
for
<
'a> FnMut(<T as Trait<'
a
>>::
Item
),
{
}
fn
main
()
{
foo
((),
drop
)
}