1const std = @import("std"); 2const assert = std.debug.assert; 3 4pub fn run() void { 5 comptime assert(@import("root") == @import("root2")); 6}