zig/test/behavior/bugs/12680_other_file.zig
2022-09-04 18:44:45 +03:00

9 lines
194 B
Zig

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