mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
21 lines
430 B
Zig
21 lines
430 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, "shift amount is greater than the type size")) {
|
||
|
std.process.exit(0);
|
||
|
}
|
||
|
std.process.exit(1);
|
||
|
}
|
||
|
|
||
|
pub fn main() !void {
|
||
|
var x: u24 = 42;
|
||
|
var y: u5 = 24;
|
||
|
var z = x << y;
|
||
|
_ = z;
|
||
|
return error.TestFailed;
|
||
|
}
|
||
|
|
||
|
// run
|
||
|
// backend=stage1
|