class Controller { suspend fun suspendHere(x: Continuation) { } } fun builder(coroutine c: Controller.() -> Continuation) { } fun foo() { builder { suspendHere() } }