Files
kotlin-fork/compiler/testData/resolvedCalls/explicitReceiverIsThisObject.txt
T
Svetlana Isakova 29ab166e1b Refactoring: AbstractResolvedCallsTest
Render resolved call to a separate file
2014-07-08 14:48:19 +04:00

16 lines
177 B
Plaintext

// !CALL: foo
class A {
fun foo() {}
}
fun bar(a: A) {
a.foo()
}
Resolved call:
Explicit receiver kind = THIS_OBJECT
This object = a
Receiver argument = NO_RECEIVER