Files
kotlin-fork/compiler/testData/resolvedCalls/invoke/bothReceivers.txt
T

14 lines
173 B
Plaintext

class Foo() {
fun Int.invoke() {}
}
fun bar(f: Foo) {
1.f<caret>()
}
Resolved call:
Explicit receiver kind = BOTH_RECEIVERS
This object = f
Receiver argument = 1