Handling some cases of obfuscated exception ranges
This commit is contained in:
14
testData/src/pkg/TestNamedSuspendFun2.kt
Normal file
14
testData/src/pkg/TestNamedSuspendFun2.kt
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
suspend fun foo2(): Int {
|
||||
while (true) {
|
||||
try {
|
||||
val x = bar()
|
||||
if (x == 0) break
|
||||
} finally {
|
||||
bar()
|
||||
}
|
||||
}
|
||||
return 1
|
||||
}
|
||||
|
||||
suspend fun bar(): Int = 0
|
||||
Reference in New Issue
Block a user