Files
kotlin-fork/idea/testData/codeInsight/postfix/spreadIntArray.kt
T
2018-08-22 10:56:39 +03:00

5 lines
80 B
Kotlin
Vendored

fun test(a: IntArray) {
foo(a.spread<caret>)
}
fun foo(vararg args: Int) {}