7 lines
184 B
Kotlin
Vendored
7 lines
184 B
Kotlin
Vendored
// !LANGUAGE: +AllowAssigningArrayElementsToVarargsInNamedFormForFunctions
|
|
// IGNORE_BACKEND: JS
|
|
|
|
fun test(vararg s: String) = s[1]
|
|
|
|
fun box(): String =
|
|
test(s = arrayOf("", "OK")) |