aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/slice.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/slice.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/slice.zig')
-rw-r--r--test/behavior/slice.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig
index a00297f84b..edb14e7f61 100644
--- a/test/behavior/slice.zig
+++ b/test/behavior/slice.zig
@@ -218,8 +218,6 @@ test "compile time slice of pointer to hard coded address" {
}
test "slice string literal has correct type" {
- if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
-
comptime {
try expect(@TypeOf("aoeu"[0..]) == *const [4:0]u8);
const array = [_]i32{ 1, 2, 3, 4 };