Files
kotlin-fork/compiler/testData/resolvedCalls/dynamic/hasBothDispatchAndExtensionReceivers.kt
T
2014-12-15 18:12:04 +03:00

10 lines
112 B
Kotlin
Vendored

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