this test isn't passing in master branch either

This commit is contained in:
Andrew Kelley 2019-12-01 16:39:30 -05:00
parent 78811ff4ac
commit 8524404f71
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -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);
}