interface A {
    val foo: Int.()->Unit

    fun test() {
        1.<caret>foo()
    }
}



Resolved call:

Resulting descriptor: val foo: Int.() -> Unit defined in A

Explicit receiver kind = NO_EXPLICIT_RECEIVER
Dispatch receiver = Class{A}
Extension receiver = NO_RECEIVER
