6 lines
79 B
Kotlin
Vendored
6 lines
79 B
Kotlin
Vendored
class A(vararg val t : Int) {
|
|
init {
|
|
val t1 : IntArray = t
|
|
}
|
|
}
|