mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
15 lines
411 B
Zig
15 lines
411 B
Zig
const expect = @import("std").testing.expect;
|
|
const builtin = @import("builtin");
|
|
|
|
usingnamespace @import("foo.zig");
|
|
usingnamespace @import("bar.zig");
|
|
|
|
test "no clobbering happened" {
|
|
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
|
|
|
|
@This().foo_function();
|
|
@This().bar_function();
|
|
try expect(@This().saw_foo_function);
|
|
try expect(@This().saw_bar_function);
|
|
}
|