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

7 lines
96 B
Kotlin
Vendored

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