Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3107.kt
T
2021-09-08 19:56:38 +03:00

18 lines
230 B
Kotlin
Vendored

fun foo(): String {
val s = try {
"OK"
} catch (e: Exception) {
try {
""
} catch (ee: Exception) {
""
}
}
return s
}
fun box(): String {
return foo()
}