Files

9 lines
104 B
Kotlin
Vendored

package foo
fun foo(a: Any) = foo(1)
fun foo(i: Int) = "foo(Int)"
fun main() {
println(foo(""))
}