aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/behavior/array.zig')
-rw-r--r--test/behavior/array.zig7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig
index 98077cb75e..0450d0781b 100644
--- a/test/behavior/array.zig
+++ b/test/behavior/array.zig
@@ -146,13 +146,6 @@ test "void arrays" {
test "nested arrays" {
if (builtin.zig_backend == .stage2_x86_64 or builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_wasm) {
- // TODO this is a recent stage2 test case regression due to an enhancement;
- // now arrays are properly detected as comptime. This exercised a new code
- // path in the wasm backend that is not yet implemented.
- return error.SkipZigTest;
- }
-
const array_of_strings = [_][]const u8{ "hello", "this", "is", "my", "thing" };
for (array_of_strings) |s, i| {
if (i == 0) try expect(mem.eql(u8, s, "hello"));