mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 10:58:58 +00:00
21 lines
455 B
Zig
21 lines
455 B
Zig
|
const std = @import("std");
|
||
|
|
||
|
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace) noreturn {
|
||
|
_ = stack_trace;
|
||
|
if (std.mem.eql(u8, message, "index out of bounds")) {
|
||
|
std.process.exit(0);
|
||
|
}
|
||
|
std.process.exit(1);
|
||
|
}
|
||
|
|
||
|
pub fn main() !void {
|
||
|
var buf = [4]u8{ 'a', 'b', 'c', 0 };
|
||
|
const input: []u8 = &buf;
|
||
|
const slice = input[0..4 :0];
|
||
|
_ = slice;
|
||
|
return error.TestFailed;
|
||
|
}
|
||
|
|
||
|
// run
|
||
|
// backend=stage1
|