Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantSpreadOperator/multipleValuesWithOtherValues.kt
T
2017-06-16 15:04:04 +03:00

6 lines
97 B
Kotlin
Vendored

fun foo(vararg x: String) {}
fun bar() {
foo(*arrayOf<caret>("abc", "def"), "ghi", "jkl")
}