aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/compile_time_null_ptr_cast.zig
blob: 2142521fd172f61c277036d7013e1d5ff352ded0 (plain)
1
2
3
4
5
6
7
8
9
10
11
comptime {
    const opt_ptr: ?*i32 = null;
    const ptr: *i32 = @ptrCast(opt_ptr);
    _ = ptr;
}

// error
// backend=llvm
// target=native
//
// :3:32: error: null pointer casted to type '*i32'