aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/test_runner_module_imports/test_runner/main.zig
blob: 13ce91b88f2f19c92aea893ea63784b6c233143d (plain)
1
2
3
4
5
6
7
8
9
const std = @import("std");
const mod2 = @import("module2");

pub fn main() !void {
    try std.testing.expectEqual(@as(usize, 1234567890), mod2.mod1.decl);
    for (@import("builtin").test_functions) |test_fn| {
        try test_fn.func();
    }
}