zig/test/standalone/dep_mutually_recursive/foo.zig

6 lines
122 B
Zig

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