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

16 lines
212 B
Plaintext

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