| ... | ... | @@ -46,6 +46,8 @@ fn getArrayLen(a: []const u32) usize { |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | test "array concat with undefined" { |
| 49 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 50 | |
| 49 | 51 | { |
| 50 | 52 | var array = "hello".* ++ @as([5]u8, undefined); |
| 51 | 53 | array[5..10].* = "world".*; |
| ... | ... | @@ -59,6 +61,9 @@ test "array concat with undefined" { |
| 59 | 61 | } |
| 60 | 62 | |
| 61 | 63 | test "array concat with tuple" { |
| 64 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 65 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO |
| 66 | |
| 62 | 67 | const array: [2]u8 = .{ 1, 2 }; |
| 63 | 68 | { |
| 64 | 69 | const seq = array ++ .{ 3, 4 }; |