Files
kotlin-fork/compiler/testData/resolvedCalls/secondaryConstructors/varargs.kt
T
2015-03-11 17:45:23 +03:00

5 lines
90 B
Kotlin

class A {
constructor(vararg x: Int) {}
}
val y = <caret>A(0, *intArray(1, 2, 3), 4))