b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
11 lines
151 B
Kotlin
Vendored
11 lines
151 B
Kotlin
Vendored
fun foo(vararg s: String) {
|
|
}
|
|
|
|
fun test1() {
|
|
foo(s = [*arrayOf<String>(elements = ["", "OK"])])
|
|
}
|
|
|
|
fun test2(ss: Array<String>) {
|
|
foo(s = [*ss])
|
|
}
|