mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Otherwise generated coroutine implementation class could not be rendered since one of its members corresponds to receiver parameter descriptor.
8 lines
144 B
Kotlin
Vendored
8 lines
144 B
Kotlin
Vendored
public fun invokeCoroutineBuilder() {
|
|
return buildCoroutine {
|
|
}
|
|
}
|
|
|
|
public fun buildCoroutine(builderAction: suspend Any.() -> Unit) {
|
|
|
|
} |