7f88de1dba
White spaces in member lists are preserved
11 lines
122 B
Kotlin
11 lines
122 B
Kotlin
package demo
|
|
|
|
class Test() {
|
|
fun putInt(i: Int) {
|
|
}
|
|
|
|
fun test() {
|
|
val i = 10
|
|
putInt(i)
|
|
}
|
|
} |