Files
kotlin/compiler/testData/codegen/dumpDeclarations/suspendLambda.kt
Ilya Gorbunov 99504eb753 Support rendering receiver parameters
Otherwise generated coroutine implementation class could not be rendered since one of its members corresponds to receiver parameter descriptor.
2017-04-27 16:38:25 +03:00

8 lines
144 B
Kotlin
Vendored

public fun invokeCoroutineBuilder() {
return buildCoroutine {
}
}
public fun buildCoroutine(builderAction: suspend Any.() -> Unit) {
}