mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
214 B
Kotlin
Vendored
13 lines
214 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// WITH_COROUTINES
|
|
// TREAT_AS_ONE_FILE
|
|
|
|
suspend fun foo() {}
|
|
|
|
suspend fun bar(): Int {
|
|
foo()
|
|
return 42
|
|
}
|
|
|
|
// 2 INVOKESTATIC kotlin/ResultKt.throwOnFailure \(Ljava/lang/Object;\)V
|