zig/doc/langref/test_comptime_index_out_of_bounds.zig

8 lines
145 B
Zig

comptime {
const array: [5]u8 = "hello".*;
const garbage = array[5];
_ = garbage;
}
// test_error=index 5 outside array of length 5