10 lines
201 B
Kotlin
Vendored
10 lines
201 B
Kotlin
Vendored
// !LANGUAGE: +AllowAssigningArrayElementsToVarargsInNamedFormForFunctions
|
|
fun foo(vararg s: String) {}
|
|
|
|
fun test1() {
|
|
foo(s = arrayOf("", "OK"))
|
|
}
|
|
|
|
fun test2(ss: Array<String>) {
|
|
foo(s = ss)
|
|
} |