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

11 lines
108 B
Kotlin

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