mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
12 lines
188 B
Kotlin
Vendored
12 lines
188 B
Kotlin
Vendored
// 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
|