aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/tuple.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/behavior/tuple.zig')
-rw-r--r--test/behavior/tuple.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/tuple.zig b/test/behavior/tuple.zig
index 5e044abf4f..f9237bb230 100644
--- a/test/behavior/tuple.zig
+++ b/test/behavior/tuple.zig
@@ -194,8 +194,6 @@ test "tuple as the result from a labeled block" {
}
test "initializing tuple with explicit type" {
- if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO
-
const T = @TypeOf(.{ @as(i32, 0), @as(u32, 0) });
var a = T{ 0, 0 };
_ = a;