5b4f10e698
instead of simply Array<T> #KT-1638 Fixed #KT-2163 Fixed #KT-3213 Fixed #KT-4172 Fixed #KT-5534 Fixed
6 lines
96 B
Kotlin
6 lines
96 B
Kotlin
fun test() {
|
|
val p: Array<String> = array("a")
|
|
foo(*p)
|
|
}
|
|
|
|
fun foo(vararg a: String?) = a |