Files
kotlin-fork/compiler/testData/codegen/box/callableReference/adaptedReferences/defaultAfterVararg.kt
T
Alexander Udalov 1071919706 Remove backend tests on old inference
Also remove any mentions of NewInference, and rename some tests.
2021-11-09 20:07:33 +01:00

9 lines
190 B
Kotlin
Vendored

fun foo(vararg a: String, result: String = "OK"): String =
if (a.size == 0) result else "Fail"
fun call(f: () -> String): String = f()
fun box(): String {
return call(::foo)
}