mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
12 lines
173 B
Zig
12 lines
173 B
Zig
pub fn main() void {
|
|
const i: anyerror!u64 = 0;
|
|
const caught = i catch 5;
|
|
assert(caught == 0);
|
|
}
|
|
fn assert(b: bool) void {
|
|
if (!b) unreachable;
|
|
}
|
|
|
|
// run
|
|
//
|