mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
8 lines
164 B
Zig
8 lines
164 B
Zig
const foo = @import("foo");
|
|
const shared = @import("shared");
|
|
const assert = @import("std").debug.assert;
|
|
|
|
pub fn main() void {
|
|
assert(foo.shared == shared);
|
|
}
|