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