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

9 lines
189 B
Kotlin
Vendored

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