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

2 lines
95 B
Kotlin
Vendored

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