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

3 lines
79 B
Kotlin
Vendored

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