1 2 3 4 5 6 7 8
comptime { assert(false); } fn assert(ok: bool) void { if (!ok) unreachable; // assertion failure } // test_error=reached unreachable code