aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/slice_of_null_pointer.zig
blob: 18c4ee8a6b17aa7ede76fb5bd39c44cf8b429647 (plain)
1
2
3
4
5
6
7
8
9
10
11
comptime {
    var x: [*c]u8 = null;
    var runtime_len: usize = 0;
    _ = &runtime_len;
    _ = x[0..runtime_len];
}

// error
// target=native
//
// :5:10: error: slice of null pointer