rust-clippy/tests/ui/ty_fn_sig.rs
2017-11-29 16:05:13 +01:00

14 lines
174 B
Rust

// Regression test
pub fn retry<F: Fn()>(f: F) {
for _i in 0.. {
f();
}
}
fn main() {
for y in 0..4 {
let func = || ();
func();
}
}