mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
26 lines
668 B
Zig
26 lines
668 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
|
|
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
|
|
_ = message;
|
|
_ = stack_trace;
|
|
std.process.exit(0);
|
|
}
|
|
pub fn main() !void {
|
|
if (builtin.zig_backend == .stage1 and builtin.os.tag == .wasi) {
|
|
// TODO file a bug for this failure
|
|
std.process.exit(0); // skip the test
|
|
}
|
|
var bytes: [1]u8 align(16) = undefined;
|
|
var ptr = other;
|
|
var frame = @asyncCall(&bytes, {}, ptr, .{});
|
|
_ = frame;
|
|
return error.TestFailed;
|
|
}
|
|
fn other() callconv(.Async) void {
|
|
suspend {}
|
|
}
|
|
// run
|
|
// backend=stage1
|
|
// target=native
|