Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
dep_mutually_recursive
test.zig
pretty
plain
permalink
blame
history
•
7 lines
•
168 B
1
const foo = @import("foo");
2
const assert = @import("std").debug.assert;
3
4
pub fn main() void {
5
assert(foo == foo.bar.foo);
6
assert(foo == foo.bar.foo.bar.foo);
7
}