8577d3ca55
Preserve white spaces inside code blocks Introduce WhiteSpaceSeparatedElementList which keeps track of whitespaces Introduce StatementList Change old test data accordingly
15 lines
373 B
Kotlin
15 lines
373 B
Kotlin
public class NonDefault() {
|
|
class object {
|
|
public fun main(args: Array<String>) {
|
|
|
|
val value = 3
|
|
val valueString = ""
|
|
when (value) {
|
|
else -> {
|
|
}
|
|
}
|
|
System.out.println(valueString)
|
|
}
|
|
}
|
|
}
|
|
fun main(args: Array<String>) = NonDefault.main(args as Array<String?>?) |