Files
kotlin-fork/j2k/tests/testData/ast/issues/kt-836.ide.kt
T
Pavel Talanov d69c61c972 Converter:
Preserve white spaces for top members (classes, package statements, comments)
2013-12-22 16:49:54 +04:00

33 lines
491 B
Kotlin

package com.voltvoodoo.saplo4j.model
import java.io.Serializable
public class Language(code: String) : Serializable {
protected var code: String = 0
override fun toString(): String {
return this.code
}
{
this.code = code
}
}
class Base() {
fun test() {
}
fun toString(): String {
return "BASE"
}
}
class Child() : Base() {
override fun test() {
}
override fun toString(): String {
return "Child"
}
}