mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
11 lines
173 B
Zig
11 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
|
|
//
|