```zig const std = @import("std"); test "runtime initialized sentinel-terminated array literal" { var c: u16 = 300; const f = &[_:0x9999]u16{c}; const g = @ptrCast(*[4]u8, f); std.testing.expect(g[2] == 0x99); std.testing.expect(g[3] == 0x99); } ``` Test case fails. Should pass.