blob: fd8a101586090681e417bb571b0ceb3df95b0a68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
comptime {
var array = [_:0]u8{ 1, 2, 3, 4 };
var src_slice: [:0]u8 = &array;
const slice = src_slice[2..6];
_ = slice;
}
comptime {
var array = [_:0]u8{ 1, 2, 3, 4 };
const slice = array[2..6];
_ = slice;
}
comptime {
var array = [_]u8{ 1, 2, 3, 4 };
const slice = array[2..5];
_ = slice;
}
comptime {
var array = [_:0]u8{ 1, 2, 3, 4 };
const slice = array[3..2];
_ = slice;
}
// error
//
// :4:32: error: end index 6 out of bounds for slice of length 4 +1 (sentinel)
// :9:28: error: end index 6 out of bounds for array of length 4 +1 (sentinel)
// :14:28: error: end index 5 out of bounds for array of length 4
// :19:25: error: start index 3 is larger than end index 2
|