summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/closure-no-fn-4.rs
blob: 275bff645dba644965a56dca64fd9e159e5dc82a (plain)
1
2
3
4
5
6
7
8
fn main() {
    let b = 2;
    let _: fn(usize) -> usize = match true {
        true => |a| a + 1,
        false => |a| a - b,
        //~^ ERROR `match` arms have incompatible types
    };
}