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

12 lines
143 B
Kotlin
Vendored

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