Files
kotlin/compiler/testData/resolvedCalls/invoke/dispatchReceiverAsReceiverForInvoke.kt

8 lines
70 B
Kotlin
Vendored

class Foo {
fun invoke() {}
}
fun bar(f: Foo) {
f<caret>()
}