mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
28 lines
557 B
Zig
28 lines
557 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, "switch on corrupt value")) {
|
|
std.process.exit(0);
|
|
}
|
|
std.process.exit(1);
|
|
}
|
|
|
|
const U = union(enum(u32)) {
|
|
X: u8,
|
|
Y: i8,
|
|
};
|
|
|
|
pub fn main() !void {
|
|
var u: U = undefined;
|
|
@memset(@ptrCast([*]u8, &u)[0..@sizeOf(U)], 0x55);
|
|
switch (u) {
|
|
.X, .Y => @breakpoint(),
|
|
}
|
|
return error.TestFailed;
|
|
}
|
|
|
|
// run
|
|
// backend=llvm
|
|
// target=native
|