zig/test/behavior/usingnamespace/a.zig
Andrew Kelley cca57042df std: fix regressions from this branch
Also move some usingnamespace test cases from compare_output to
behavior.
2021-09-01 17:54:07 -07:00

8 lines
146 B
Zig

usingnamespace @import("b.zig");
pub const a_text = "OK\n";
pub fn ok() bool {
return @import("std").mem.eql(u8, @This().b_text, "OK\n");
}