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

// error
//
// :5:10: error: slice of null pointer