Files
kotlin-fork/compiler/testData/resolvedCalls/explicitReceiverIsReceiverArgument.txt
T

14 lines
173 B
Plaintext

class A {}
fun A.foo() {}
fun bar(a: A) {
a.<caret>foo()
}
Resolved call:
Explicit receiver kind = RECEIVER_ARGUMENT
This object = NO_RECEIVER
Receiver argument = a