aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/slice_end_index_undefined.zig
blob: f7a15a41c2965357100ef5874587ecc15f9f40d9 (plain)
1
2
3
4
5
6
7
8
export fn a() void {
    var array: [0]void = undefined;
    _ = array[0..undefined];
}

// error
//
// :3:18: error: use of undefined value here causes illegal behavior