rust-clippy/tests/ui/ty_fn_sig.rs

15 lines
174 B
Rust
Raw Normal View History

2017-11-29 14:52:57 +00:00
// Regression test
pub fn retry<F: Fn()>(f: F) {
for _i in 0.. {
f();
}
}
2017-11-29 15:05:13 +00:00
fn main() {
for y in 0..4 {
let func = || ();
func();
}
}