mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
Sometimes instead of {POP, GETSTATIC Unit.INSTANCE, ARETURN} sequence
the codegen emits {CHECKCAST Unit, ARETURN} sequence, which breaks tail
call optimization. By replacing CHECKCAST with ARETURN we eliminate
this issue.
#KT-19790: Fixed
11 lines
207 B
Kotlin
Vendored
11 lines
207 B
Kotlin
Vendored
suspend fun catchException(): String {
|
|
try {
|
|
return suspendWithException()
|
|
}
|
|
catch(e: Exception) {
|
|
return e.message!!
|
|
}
|
|
}
|
|
|
|
suspend fun suspendWithException(): String = TODO()
|