Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
ty_fn_sig.rs
blob: 60767bfad135cc818de159e22dba24b4d4cc36c4 [
file
] [
log
] [
blame
]
//@ check-pass
// Regression test
pub
fn
retry
<
F
:
Fn
()>(
f
:
F
)
{
for
_i in
0.
.
{
f
();
}
}
fn
main
()
{
for
y in
0.
.
4
{
let
func
=
||
();
func
();
}
}