aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/stage1/behavior/misc.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/stage1/behavior/misc.zig b/test/stage1/behavior/misc.zig
index fd407821e6..4cc401a008 100644
--- a/test/stage1/behavior/misc.zig
+++ b/test/stage1/behavior/misc.zig
@@ -688,11 +688,6 @@ fn getNull() ?*i32 {
}
test "thread local variable" {
- if (!builtin.position_independent_code and !builtin.link_libc) {
- // TODO https://github.com/ziglang/zig/issues/2063
- return error.SkipZigTest;
- }
-
const S = struct {
threadlocal var t: i32 = 1234;
};