diff --git a/test/stage1/behavior/array.zig b/test/stage1/behavior/array.zig index 49419f15f18a5b8445b565fb4f28e300309de7d4..1d51f822d07ea5631ff43cab1c2751bb506e7cef 100644 --- 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); -}