mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
224 B
Kotlin
Vendored
10 lines
224 B
Kotlin
Vendored
package test
|
|
class Controller {
|
|
suspend fun suspendFun(x: Continuation<String>) {}
|
|
operator fun handleResult(x: Int, y: Continuation<Nothing>) {}
|
|
}
|
|
|
|
fun builder(coroutine c: Controller.() -> Continuation<Unit>) {
|
|
|
|
}
|