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