mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
12 lines
309 B
Zig
12 lines
309 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const root = @import("root");
|
|
const foo = @import("foo");
|
|
|
|
pub fn main() void {
|
|
std.debug.assert(root == @This());
|
|
std.debug.assert(std == foo.std);
|
|
std.debug.assert(builtin == foo.builtin);
|
|
std.debug.assert(root == foo.root);
|
|
}
|