mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 17:12:31 +00:00
7 lines
122 B
Zig
7 lines
122 B
Zig
const assert = @import("std").debug.assert;
|
|
pub const foo = @import("foo");
|
|
|
|
comptime {
|
|
assert(foo.bar == @This());
|
|
}
|