Files
kotlin-fork/compiler/testData/resolvedCalls/explicitReceiverIsExtensionReceiver.kt
T

8 lines
65 B
Kotlin
Vendored

class A {}
fun A.foo() {}
fun bar(a: A) {
a.<caret>foo()
}