Jump on 'continue' to condition entry points for all loops
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
fun test(b: Boolean) {
|
||||
do {
|
||||
if (b) break;
|
||||
continue;
|
||||
} while (true);
|
||||
}
|
||||
Reference in New Issue
Block a user