diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-02-24 22:27:54 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-02-24 22:28:37 -0700 |
| commit | 27eb42c15e4e9ab547eaf02cca8810cc0e10e6bf (patch) | |
| tree | 83cd40198ef1f55946163766a04fe9202a510206 /test/behavior/slice.zig | |
| parent | adb746a7017ba6f91974d5e940bc8a8f64bb45f5 (diff) | |
| download | zig-27eb42c15e4e9ab547eaf02cca8810cc0e10e6bf.tar.gz zig-27eb42c15e4e9ab547eaf02cca8810cc0e10e6bf.zip | |
Sema: implement tupleFieldVal, fix comptime elem_ptr
Diffstat (limited to 'test/behavior/slice.zig')
| -rw-r--r-- | test/behavior/slice.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig index 01d132df54..e746535d97 100644 --- a/test/behavior/slice.zig +++ b/test/behavior/slice.zig @@ -565,7 +565,8 @@ test "array concat of slices gives slice" { } test "slice bounds in comptime concatenation" { - if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO const bs = comptime blk: { const b = "........1........"; |
