d98d8cfa7f
Functions are final by default in plugin mode
6 lines
92 B
Kotlin
6 lines
92 B
Kotlin
package demo
|
|
class Test() {
|
|
fun test(vararg var args : Any) {
|
|
args = array<Int>(1, 2, 3)
|
|
}
|
|
} |