Files
kotlin-fork/compiler/testData/resolvedCalls/invoke/invokeOnObject2.txt
T

18 lines
293 B
Plaintext

object A {
fun invoke(i: Int) = i
}
fun test() = A<caret>(1)
Resolved call:
Resulting descriptor: fun invoke(i: Int): Int defined in A
Explicit receiver kind = DISPATCH_RECEIVER
Dispatch receiver = A {A}
Extension receiver = NO_RECEIVER
Value arguments mapping:
SUCCESS i : Int = 1