Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/tryCatchInExpressions/tryInsideTry.kt
T
2017-03-13 15:31:46 +03:00

10 lines
248 B
Kotlin

class MyException(message: String): Exception(message)
fun box(): String =
"O" +
try {
try { throw Exception("oops!") } catch (mye: MyException) { "1" }
}
catch (e: Exception) {
"K"
}