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

// error
// backend=stage2
// target=native
//
// :3:18: error: use of undefined value here causes undefined behavior