Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_comptime_reaching_unreachable.zig
pretty
plain
permalink
blame
history
•
8 lines
•
148 B
1
comptime {
2
assert(false);
3
}
4
fn assert(ok: bool) void {
5
if (!ok) unreachable; // assertion failure
6
}
7
8
// test_error=reached unreachable code