mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
14 lines
174 B
Rust
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();
|
|
}
|
|
}
|