1071919706
Also remove any mentions of NewInference, and rename some tests.
8 lines
162 B
Kotlin
Vendored
8 lines
162 B
Kotlin
Vendored
fun foo(x: String, y: String = "K"): String = x + y
|
|
|
|
fun call(f: (String) -> String, x: String): String = f(x)
|
|
|
|
fun box(): String {
|
|
return call(::foo, "O")
|
|
}
|