Files
zig/test/cases/safety/optional_empty_error_set.zig
T
Mason Remaley ac207073f3 Reverts renaming of builtin.StackTrace -> ErrorReturnTrace
We can defer this change until the next time zig1 needs to be updated
2026-04-12 04:01:30 -07:00

23 lines
508 B
Zig

const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, ra: ?usize) noreturn {
_ = stack_trace;
_ = ra;
if (std.mem.eql(u8, message, "attempt to use null value")) {
std.process.exit(0);
}
std.process.exit(1);
}
pub fn main() !void {
foo() catch |err| switch (err) {};
return error.TestFailed;
}
var x: ?error{} = null;
fn foo() !void {
return x.?;
}
// run
// backend=selfhosted,llvm
// target=x86_64-linux,aarch64-linux