Files
kotlin-fork/compiler/testData/resolvedCalls/hasBothDispatchAndExtensionReceivers.kt
T
2015-05-12 19:43:17 +02:00

12 lines
113 B
Kotlin
Vendored

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