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