aboutsummaryrefslogtreecommitdiff
path: root/test/cases/safety/pointer casting null to non-optional pointer.zig
blob: e10297dc49cf00fb006fd5ad2459782bb43f235a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const std = @import("std");

pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
    _ = stack_trace;
    if (std.mem.eql(u8, message, "cast causes pointer to be null")) {
        std.process.exit(0);
    }
    std.process.exit(1);
}

pub fn main() !void {
    var c_ptr: [*c]u8 = 0;
    _ = &c_ptr;
    const zig_ptr: *u8 = c_ptr;
    _ = zig_ptr;
    return error.TestFailed;
}

// run
// backend=selfhosted,llvm
// target=x86_64-linux,aarch64-linux