Files
kotlin-fork/compiler/testData/ir/irText/classes/objectWithInitializers.kt
T
2016-10-18 09:08:51 +03:00

9 lines
105 B
Kotlin
Vendored

abstract class Base
object Test : Base() {
val x = 1
val y: Int
init {
y = x
}
}