stage2: implement integer pointer constants

This commit is contained in:
Andrew Kelley
2022-03-10 15:32:10 -07:00
parent b0dc61fae2
commit b642fa24a6
3 changed files with 17 additions and 6 deletions

View File

@@ -719,7 +719,7 @@ test "string concatenation" {
}
test "thread local variable" {
if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
const S = struct {
threadlocal var t: i32 = 1234;