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

2 lines
78 B
Kotlin
Vendored

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