mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
23 lines
436 B
Zig
23 lines
436 B
Zig
const std = @import("std");
|
|
|
|
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
|
|
_ = message;
|
|
_ = stack_trace;
|
|
std.process.exit(0);
|
|
}
|
|
pub fn main() !void {
|
|
var frame = async first();
|
|
resume frame;
|
|
return error.TestFailed;
|
|
}
|
|
fn first() void {
|
|
var frame = async other();
|
|
await frame;
|
|
}
|
|
fn other() void {
|
|
suspend {}
|
|
}
|
|
// run
|
|
// backend=stage1
|
|
// target=native
|