Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantSpreadOperator/intArrayOfWithoutArguments2.kt
T
2020-06-30 19:16:22 +07:00

8 lines
124 B
Kotlin
Vendored

// PROBLEM: none
fun foo(vararg args: Int) {}
fun foo(vararg args: Double) {}
fun test() {
foo(<caret>*intArrayOf())
}