master
 1export fn builtinCallBoolFunctionInlineWithVoid() void {
 2    @call(.always_inline, boolFunction, .{{}});
 3}
 4
 5fn boolFunction(_: bool) void {}
 6
 7// error
 8//
 9// :2:43: error: expected type 'bool', found 'void'
10// :5:20: note: parameter type declared here