Files
kotlin/compiler/testData/codegen/box/controlStructures/tryCatchInExpressions/tryInsideCatch.kt
2018-06-19 17:09:31 +03:00

8 lines
188 B
Kotlin
Vendored

fun box(): String =
"O" +
try {
throw Exception("oops!")
}
catch (e: Exception) {
try { "K" } catch (e: Exception) { "2" }
}