Fix of getCorrespondingLoop for complex loop / try-finally trees #KT-8246 Fixed
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
fun box(): String {
|
||||
while (true) {
|
||||
try {
|
||||
continue;
|
||||
}
|
||||
finally {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user