mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
cca57042df
Also move some usingnamespace test cases from compare_output to behavior.
9 lines
176 B
Zig
9 lines
176 B
Zig
usingnamespace @import("other.zig");
|
|
|
|
pub var saw_bar_function = false;
|
|
pub fn bar_function() void {
|
|
if (@This().foo_function()) {
|
|
saw_bar_function = true;
|
|
}
|
|
}
|