export fn entry() void { const ints = [_]u8{ 1, 2 }; inline for (ints) |_| { bad() catch continue; } } fn bad() !void { return error.Bad; } // error // backend=stage2 // target=native // // :4:21: error: comptime control flow inside runtime block // :4:15: note: runtime control flow here