Files
kotlin-fork/j2k/tests/testData/ast/issues/kt-837.kt
T
Pavel V. Talanov 7f88de1dba Converter tests:
White spaces in member lists are preserved
2013-12-22 16:49:47 +04:00

22 lines
530 B
Kotlin

package com.voltvoodoo.saplo4j.model
import java.io.Serializable
public open class Language(code: String?) : Serializable {
protected var code: String? = null
public open fun equals(other: Language?): Boolean {
return other?.toString()?.equals(this.toString())!!
}
{
this.code = code
}
class object {
public var ENGLISH: Language? = Language("en")
public var SWEDISH: Language? = Language("sv")
private val serialVersionUID: Long = -2442762969929206780
}
}