Files
kotlin-fork/compiler/testData/resolvedCalls/hasBothThisObjectAndReceiverArgumentWithoutExplicitReceiver.kt
T
2014-09-01 12:32:48 +04:00

13 lines
139 B
Kotlin

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