mirror of
https://github.com/ziglang/zig.git
synced 2025-12-30 10:03:21 +00:00
24 lines
479 B
Zig
24 lines
479 B
Zig
const std = @import("std");
|
|
|
|
pub fn panic(message: []const u8, _: ?*std.builtin.StackTrace, _: ?usize) noreturn {
|
|
if (std.mem.eql(u8, message, "invalid enum value")) {
|
|
std.process.exit(0);
|
|
}
|
|
std.process.exit(1);
|
|
}
|
|
|
|
pub fn main() u8 {
|
|
var num: i5 = undefined;
|
|
num = 14;
|
|
|
|
const E = enum(u3) { a, b, c, d, e, f, g, h };
|
|
const invalid: E = @enumFromInt(num);
|
|
_ = invalid;
|
|
|
|
return 1;
|
|
}
|
|
|
|
// run
|
|
// backend=stage2,llvm
|
|
// target=x86_64-linux
|