mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
7 lines
145 B
Zig
7 lines
145 B
Zig
comptime {
|
|
const array: [5]u8 = "hello".*;
|
|
const garbage = array[5];
|
|
_ = garbage;
|
|
}
|
|
|
|
// test_error=index 5 outside array of length 5
|