const std = @import("std"); pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace) noreturn { _ = message; _ = stack_trace; std.process.exit(0); } pub fn main() !void { var frame = async first(); resume frame; return error.TestFailed; } fn first() void { other(); } fn other() void { suspend {} } // run // backend=stage1