Files
zig/test/behavior/bugs/12680_other_file.zig
2023-06-19 12:34:42 -07:00

9 lines
196 B
Zig

// export this function twice
pub export fn testFunc() callconv(.C) usize {
return @intFromPtr(&testFunc);
}
comptime {
@export(testFunc, .{ .name = "test_func", .linkage = .Strong });
}