aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/compile_time_undef_ptr_cast.zig
blob: 8c1bfe2c7580f36c1d8815171ab74b795bad6241 (plain)
1
2
3
4
5
6
7
8
9
10
comptime {
    var undef_ptr: *i32 = undefined;
    const ptr: *i32 = @ptrCast(undef_ptr);
    _ = &undef_ptr;
    _ = ptr;
}

// error
//
// :3:32: error: use of undefined value here causes illegal behavior