master
1export fn entry() void {
2 var p: ?i32 = undefined;
3 _ = &p;
4 comptime var q = true;
5 inline while (q) {
6 if (p) |_| continue;
7 q = false;
8 }
9}
10
11// error
12//
13// :6:20: error: comptime control flow inside runtime block
14// :6:13: note: runtime control flow here