stage1: Skip new tests that never passed in stage1

This gets the behavior tests passing for stage1 again.
This commit is contained in:
Cody Tapscott
2022-10-08 11:29:49 -07:00
parent f5f28e0d2c
commit 83e2d3fb37
9 changed files with 21 additions and 8 deletions

View File

@@ -1169,10 +1169,3 @@ test "Non-exhaustive enum with nonstandard int size behaves correctly" {
const E = enum(u15) { _ };
try expect(@sizeOf(E) == @sizeOf(u15));
}
test "Non-exhaustive enum backed by comptime_int" {
const E = enum(comptime_int) { a, b, c, _ };
comptime var e: E = .a;
e = @intToEnum(E, 378089457309184723749);
try expect(@enumToInt(e) == 378089457309184723749);
}