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