Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
issue-51185.rs
blob: ddba905835f84b46e802aee227903bf2e4464698 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
foo
()
->
impl
Into
<
for
<
'a> fn(&'
a
())>
{
(|
_
|
{})
as
for
<
'a> fn(&'
a
())
}
fn
main
()
{
foo
().
into
()(&());
}