21bc2887d2
Omit Unit return type Refactor handling of Unit type: extract separate object UnitType
6 lines
102 B
Kotlin
6 lines
102 B
Kotlin
package demo
|
|
open class Test() {
|
|
open fun test(vararg var args : Any) {
|
|
args = array<Int>(1, 2, 3)
|
|
}
|
|
} |