summaryrefslogtreecommitdiffstats
path: root/src/test/ui/functions-closures/closure-immediate.rs
blob: 428fc6bdef368abd7ae76635d60338467388d5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass

// After the work to reoptimize structs, it became possible for immediate logic to fail.
// This test verifies that it actually works.

fn main() {
    let c = |a: u8, b: u16, c: u8| {
        assert_eq!(a, 1);
        assert_eq!(b, 2);
        assert_eq!(c, 3);
    };
    c(1, 2, 3);
}