summaryrefslogtreecommitdiff
path: root/tests/ui/closures/issue-46742.rs
blob: cd8dc486906bbb0559a79bb3bee3b79d5fc6cd52 (plain)
1
2
3
4
5
6
7
8
9
// check-pass
fn main() {
    let _: i32 = (match "" {
        "+" => ::std::ops::Add::add,
        "-" => ::std::ops::Sub::sub,
        "<" => |a,b| (a < b) as i32,
        _ => unimplemented!(),
    })(5, 5);
}