zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 8524404f715ea660c4469dadb37701f7a46f85af (tree)
parent 78811ff4acf6d05ae9e6d9acafe58f40ae3ae952
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun,  1 Dec 2019 16:39:30 -0500

this test isn't passing in master branch either

Diffstat:
Mtest/stage1/behavior/array.zig | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/test/stage1/behavior/array.zig b/test/stage1/behavior/array.zig @@ -360,9 +360,3 @@ test "access the null element of a null terminated array" { S.doTheTest(); comptime S.doTheTest(); } - -test "type coerce sentinel-terminated array to non-sentinel-terminated array" { - var array: [2]u8 = [_:255]u8{1, 2}; - expect(array[0] == 1); - expect(array[1] == 2); -}