29ab166e1b
Render resolved call to a separate file
16 lines
181 B
Plaintext
16 lines
181 B
Plaintext
// !CALL: foo
|
|
|
|
class A {}
|
|
|
|
fun A.foo() {}
|
|
|
|
fun bar(a: A) {
|
|
a.foo()
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Explicit receiver kind = RECEIVER_ARGUMENT
|
|
This object = NO_RECEIVER
|
|
Receiver argument = a |