mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
ac207073f3
We can defer this change until the next time zig1 needs to be updated
19 lines
484 B
Zig
19 lines
484 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, "integer overflow")) {
|
|
std.process.exit(0);
|
|
}
|
|
std.process.exit(1);
|
|
}
|
|
pub fn main() !void {
|
|
var buffer = [6]i32{ 1, 2, 3, 4, 5, 6 };
|
|
@memset(&buffer, undefined);
|
|
var x: i32 = buffer[1];
|
|
x += buffer[2];
|
|
}
|
|
// run
|
|
// backend=selfhosted,llvm
|
|
// target=x86_64-linux,aarch64-linux
|