mirror of
https://github.com/ziglang/zig.git
synced 2024-11-16 00:57:04 +00:00
9 lines
190 B
Zig
9 lines
190 B
Zig
|
const foo = @import("foo");
|
||
|
const shared = @import("shared");
|
||
|
const assert = @import("std").debug.assert;
|
||
|
|
||
|
pub fn main() void {
|
||
|
assert(foo == foo.foo);
|
||
|
assert(foo == foo.foo.foo);
|
||
|
}
|