Files
kotlin-fork/compiler/testData/diagnostics/tests/varargs/kt1838-param.kt
T

7 lines
92 B
Kotlin
Vendored

// FIR_IDENTICAL
class A(vararg t : Int) {
init {
val t1 : IntArray = t
}
}