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

// error
// backend=llvm
// target=native
//
// :3:32: error: use of undefined value here causes undefined behavior