Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_comptime_index_out_of_bounds.zig
pretty
plain
permalink
blame
history
•
7 lines
•
145 B
1
comptime {
2
const array: [5]u8 = "hello".*;
3
const garbage = array[5];
4
_ = garbage;
5
}
6
7
// test_error=index 5 outside array of length 5