mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 19:09:32 +00:00
8 lines
162 B
Zig
8 lines
162 B
Zig
const foo = @import("foo");
|
|
const bar = @import("bar");
|
|
const assert = @import("std").debug.assert;
|
|
|
|
pub fn main() void {
|
|
assert(foo.shared == bar.shared);
|
|
}
|