Fix reference resolution on suspension calls
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
class Controller {
|
||||
suspend fun suspendHere(x: Continuation<Unit>) {
|
||||
}
|
||||
}
|
||||
|
||||
fun builder(coroutine c: Controller.() -> Continuation<Unit>) {
|
||||
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
builder {
|
||||
<caret>suspendHere()
|
||||
}
|
||||
}
|
||||
|
||||
// REF: (in Controller).suspendHere(Continuation<Unit>)
|
||||
Reference in New Issue
Block a user