master
 1const expect = @import("std").testing.expect;
 2
 3test "noinline function call" {
 4    try expect(@call(.auto, add, .{ 3, 9 }) == 12);
 5}
 6
 7fn add(a: i32, b: i32) i32 {
 8    return a + b;
 9}
10
11// test