aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/dep_shared_builtin/test.zig
blob: 88a11f440aa3264a2aeef1311dea8355ae5b2d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
}