20 lines
353 B
Plaintext
Vendored
20 lines
353 B
Plaintext
Vendored
object A {
|
|
fun invoke(i: Int) = i
|
|
}
|
|
|
|
fun test() = A<caret>(1)
|
|
|
|
|
|
Resolved call:
|
|
|
|
Candidate descriptor: fun invoke(i: Int): Int defined in A
|
|
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
|