mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
7 lines
118 B
Zig
7 lines
118 B
Zig
|
const assert = @import("std").debug.assert;
|
||
|
pub const foo = @import("foo");
|
||
|
|
||
|
comptime {
|
||
|
assert(foo == @This());
|
||
|
}
|