zig/test/standalone/issue_12706/main.zig
2022-09-01 13:16:33 +03:00

13 lines
220 B
Zig

const std = @import("std");
extern fn testFnPtr(n: c_int, ...) void;
const val: c_int = 123;
fn func(a: c_int) callconv(.C) void {
std.debug.assert(a == val);
}
pub fn main() void {
testFnPtr(2, func, val);
}