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