741e031ff1
Use formatter in converter tests Reformat test data
8 lines
115 B
Kotlin
8 lines
115 B
Kotlin
package demo
|
|
|
|
open class Test() {
|
|
open fun test(var i: Int): Int {
|
|
i = 10
|
|
return i + 20
|
|
}
|
|
} |