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