mirror of
https://github.com/ziglang/zig.git
synced 2026-01-11 01:45:12 +00:00
This matches master branch. We can look into adding more target coverage as we switch to stage2. As it stands, this works around having to duplicate the "Executor" logic to figure out when to not run the tests due to them being non-native.
19 lines
391 B
Zig
19 lines
391 B
Zig
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 {
|
|
const x = mul(300, 6000);
|
|
if (x == 0) return error.Whatever;
|
|
return error.TestFailed;
|
|
}
|
|
fn mul(a: u16, b: u16) u16 {
|
|
return a * b;
|
|
}
|
|
// run
|
|
// backend=stage1
|
|
// target=native |