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

14 lines
140 B
Kotlin

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