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

14 lines
144 B
Kotlin
Vendored

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