zig/test/standalone/dep_recursive/foo.zig

7 lines
118 B
Zig
Raw Normal View History

const assert = @import("std").debug.assert;
pub const foo = @import("foo");
comptime {
assert(foo == @This());
}