Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
runtime_index_out_of_bounds.zig
pretty
plain
permalink
blame
history
•
10 lines
•
122 B
1
pub fn main() void {
2
const x = foo("hello");
3
_ = x;
4
}
5
6
fn foo(x: []const u8) u8 {
7
return x[5];
8
}
9
10
// exe=fail