master
 1export fn entry() void {
 2    const ints = [_]u8{ 1, 2 };
 3    inline for (ints) |_| {
 4        bad() orelse continue;
 5    }
 6}
 7fn bad() ?void {
 8    return null;
 9}
10
11// error
12//
13// :4:22: error: comptime control flow inside runtime block
14// :4:15: note: runtime control flow here