aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-03-05 11:31:51 +0100
committerjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-03-05 11:31:51 +0100
commita06e9eca45f72b28ed9ca00da5c9562e969cc84d (patch)
treeeebd5b573c86e1ec206e5a57328c3649a05002e0 /test/behavior/array.zig
parented7e2938ff2385d658f04248f1c757b324009be4 (diff)
downloadzig-a06e9eca45f72b28ed9ca00da5c9562e969cc84d.tar.gz
zig-a06e9eca45f72b28ed9ca00da5c9562e969cc84d.zip
stage2 AArch64: add more slice support
* airSlice * airArrayToSlice * and initial support for airSlicePtr and co
Diffstat (limited to 'test/behavior/array.zig')
-rw-r--r--test/behavior/array.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig
index cf9eaf660c..6482c1db2d 100644
--- a/test/behavior/array.zig
+++ b/test/behavior/array.zig
@@ -142,8 +142,6 @@ test "array with sentinels" {
}
test "void arrays" {
- if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
-
var array: [4]void = undefined;
array[0] = void{};
array[1] = array[2];