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