mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
7 lines
143 B
Zig
7 lines
143 B
Zig
comptime {
|
|
const opt_ptr: ?*i32 = null;
|
|
const ptr: *i32 = @ptrCast(opt_ptr);
|
|
_ = ptr;
|
|
}
|
|
|
|
// test_error=null pointer casted to type
|