mirror of
https://github.com/ziglang/zig.git
synced 2025-12-27 16:43:07 +00:00
8 lines
149 B
Zig
8 lines
149 B
Zig
pub fn panic(msg: []const u8) -> noreturn { @breakpoint(); while (true) {} }
|
|
|
|
fn bar() -> %void {}
|
|
|
|
export fn foo() {
|
|
bar() catch unreachable;
|
|
}
|