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

6 lines
80 B
Plaintext
Vendored

fun foo(vararg x: String) {}
fun bar() {
foo("abc", "def", "ghi", "jkl")
}