1comptime { 2 var undef_ptr: *i32 = undefined; 3 const ptr: *i32 = @ptrCast(undef_ptr); 4 _ = &undef_ptr; 5 _ = ptr; 6} 7 8// error 9// 10// :3:32: error: use of undefined value here causes illegal behavior