Files
kotlin-fork/compiler/testData/codegen/box/vararg/kt37779.kt
T
2021-07-02 15:39:29 +03:00

12 lines
241 B
Kotlin
Vendored

// !LANGUAGE: +AllowAssigningArrayElementsToVarargsInNamedFormForFunctions
fun test(vararg s: String) = s[1] + s.size
fun box(): String {
val r = test(s = arrayOf("aaa", "Bb"))
if (r != "Bb2") return "fail: $r"
return "OK"
}