blob: 0bda017de5a5c96f06ec5fc5879ed6f552dd6a8f [file] [log] [blame]
//@ 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);
}