Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3107.kt
T
2018-06-19 17:09:31 +03:00

17 lines
229 B
Kotlin
Vendored

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