aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/slice.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-10-10 00:47:45 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2022-10-25 05:11:29 -0400
commit5eafc10bf41451fb694f324dcaefe5c458e1ca3a (patch)
tree45ee1879f0a2b0b6b198cb4136f04e5cc1868de9 /test/behavior/slice.zig
parentc126a1018eec54c568aaa642013e3c86bdd6d3e4 (diff)
downloadzig-5eafc10bf41451fb694f324dcaefe5c458e1ca3a.tar.gz
zig-5eafc10bf41451fb694f324dcaefe5c458e1ca3a.zip
cbe: fix global access fix
Diffstat (limited to 'test/behavior/slice.zig')
-rw-r--r--test/behavior/slice.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig
index 1b6fc3634f..3b79f83d8f 100644
--- a/test/behavior/slice.zig
+++ b/test/behavior/slice.zig
@@ -169,7 +169,6 @@ test "comptime pointer cast array and then slice" {
test "slicing zero length array" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
const s1 = ""[0..];
@@ -206,8 +205,6 @@ test "slice string literal has correct type" {
}
test "result location zero sized array inside struct field implicit cast to slice" {
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
-
const E = struct {
entries: []u32,
};