Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3107.kt
T
2015-03-04 17:24:58 +01: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()
}