741e031ff1
Use formatter in converter tests Reformat test data
7 lines
120 B
Kotlin
7 lines
120 B
Kotlin
package demo
|
|
|
|
open class Test() {
|
|
open fun test(vararg var args: Any?) {
|
|
args = array<Int?>(1, 2, 3)
|
|
}
|
|
} |