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