mirror of
https://github.com/ziglang/zig.git
synced 2024-12-02 18:12:34 +00:00
0f633167c5
closes #339
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();
|
|
}
|