d9821412d0
This also allows us to not spill them in the lambda. But, disable this optimization for local named functions. #KT-16222 In progress
10 lines
182 B
Kotlin
Vendored
10 lines
182 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
public fun invokeCoroutineBuilder() {
|
|
return buildCoroutine {
|
|
println(this)
|
|
}
|
|
}
|
|
|
|
public fun buildCoroutine(builderAction: suspend Any.() -> Unit) {
|
|
|
|
} |