9 lines
160 B
Kotlin
Vendored
9 lines
160 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
public fun invokeCoroutineBuilder() {
|
|
return buildCoroutine {
|
|
}
|
|
}
|
|
|
|
public fun buildCoroutine(builderAction: suspend Any.() -> Unit) {
|
|
|
|
} |