Files
kotlin/compiler/testData/codegen/bytecodeListing/tryCatchTailCall.kt
2018-01-10 20:13:55 +03:00

11 lines
207 B
Kotlin
Vendored

suspend fun catchException(): String {
try {
return suspendWithException()
}
catch(e: Exception) {
return e.message!!
}
}
suspend fun suspendWithException(): String = TODO()