master
1comptime {
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