| 1 | const std = @import("std"); |
| 2 | const mod2 = @import("module2"); |
| 3 | |
| 4 | pub fn main() !void { |
| 5 | try std.testing.expectEqual(@as(usize, 1234567890), mod2.mod1.decl); |
| 6 | for (@import("builtin").test_functions) |test_fn| { |
| 7 | try test_fn.func(); |
| 8 | } |
| 9 | } |