Files
kotlin-fork/compiler/testData/cfg/expressions/unresolvedCallsWithReceiver.kt
T

11 lines
155 B
Kotlin
Vendored

open class Foo {
fun foo(a: IntArray) {}
fun foo(a: Int, b: Int) {}
}
fun Foo.foo(i: Int) {}
fun Foo.foo() {}
fun test() {
Foo().foo(bar())
}