Files
zig/test/cases/safety/modrem by zero.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

21 lines
476 B
Zig

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, "division by zero")) {
std.process.exit(0);
}
std.process.exit(1);
}
pub fn main() !void {
const x = div0(999, 0);
_ = x;
return error.TestFailed;
}
fn div0(a: u32, b: u32) u32 {
return a / b;
}
// run
// backend=selfhosted,llvm
// target=x86_64-linux,aarch64-linux