Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
issues
/
issue-53457.rs
blob: bb248ef717733d4225d5d466af3ce892d3157133 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
feature
(
type_alias_impl_trait
)]
type
X
=
impl
Clone
;
fn
bar
<
F
:
Fn
(&
i32
)
+
Clone
>(
f
:
F
)
->
F
{
f
}
fn
foo
()
->
X
{
bar
(|
_
|
())
}
fn
main
()
{}