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

5 lines
74 B
Kotlin
Vendored

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