master
 1const std = @import("std");
 2
 3pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
 4    _ = stack_trace;
 5    if (std.mem.eql(u8, message, "integer overflow")) {
 6        std.process.exit(0);
 7    }
 8    std.process.exit(1);
 9}
10
11pub fn main() !void {
12    const x = div(-32768, -1);
13    if (x == 32767) return error.Whatever;
14    return error.TestFailed;
15}
16fn div(a: i16, b: i16) i16 {
17    return @divTrunc(a, b);
18}
19// run
20// backend=selfhosted,llvm
21// target=x86_64-linux,aarch64-linux