Fix of getCorrespondingLoop for complex loop / try-finally trees #KT-8246 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
fun test() {
|
||||
while (true) {
|
||||
class LocalClass(val x: Int) {
|
||||
init {
|
||||
break
|
||||
}
|
||||
constructor() : this(42) {
|
||||
break
|
||||
}
|
||||
fun foo() {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user