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

6 lines
75 B
Kotlin
Vendored

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