summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-22647.rs
blob: 163cbc69ddd626e242df0648540ea5ec44926468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    let caller<F> = |f: F|  //~ ERROR generic args in patterns require the turbofish syntax
    where F: Fn() -> i32
    {
        let x = f();
        println!("Y {}",x);
        return x;
    };

    caller(bar_handler);
}

fn bar_handler() -> i32 {
    5
}