Files
kotlin-fork/compiler/testData/resolvedCalls/secondaryConstructors/varargs.kt
T
2015-09-19 04:32:56 +03:00

5 lines
92 B
Kotlin
Vendored

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