summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/ty_fn_sig.rs
blob: 9e2753dcb18d6d5037debe0aa40eaa518571511c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Regression test

pub fn retry<F: Fn()>(f: F) {
    for _i in 0.. {
        f();
    }
}

fn main() {
    for y in 0..4 {
        let func = || ();
        func();
    }
}