remove references to stage1 in behavior tests

Good riddance.
This commit is contained in:
Andrew Kelley
2022-12-06 19:06:48 -07:00
parent b7b905d227
commit c8aba15c22
61 changed files with 150 additions and 647 deletions

View File

@@ -135,9 +135,6 @@ test "peer type resolution with C pointers" {
}
test "peer type resolution with C pointer and const pointer" {
// stage1 incorrectly resolves to [*]u8
if (builtin.zig_backend == .stage1) return error.SkipZigTest;
var ptr_c: [*c]u8 = undefined;
const ptr_const: u8 = undefined;
try expect(@TypeOf(ptr_c, &ptr_const) == [*c]const u8);