zig/test/behavior/duplicated_test_names.zig
2023-05-20 17:30:22 +02:00

20 lines
255 B
Zig

const builtin = @import("builtin");
const Namespace = struct {
test "thingy" {}
};
fn thingy(a: usize, b: usize) usize {
return a + b;
}
comptime {
_ = Namespace;
}
test "thingy" {}
test thingy {
if (thingy(1, 2) != 3) unreachable;
}