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

8 lines
116 B
Kotlin
Vendored

fun foo(i: Int) {}
fun foo(a: IntArray) {}
fun foo(a: String, b: Int) {}
fun foo() {}
fun test() {
foo(bar())
}