2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-27 13:33:26 +00:00
rust-clippy/tests/ui/ty_fn_sig.rs
2019-01-08 21:46:39 +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();
}
}