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

12 lines
109 B
Kotlin

class A {
fun B.foo() {}
}
trait B
fun bar(a: A, b: B) {
with (a) {
b.<caret>foo()
}
}