aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/depend_on_main_mod/src/foo.zig
blob: 0a52bce8aa6fc1244df88629162c9e2af4a77c9a (plain)
1
2
3
4
5
6
const std = @import("std");
const assert = std.debug.assert;

pub fn run() void {
    comptime assert(@import("root") == @import("root2"));
}