Files
kotlin-fork/compiler/testData/ir/irText/classes/objectWithInitializers.kt.txt
T

30 lines
315 B
Plaintext
Vendored

abstract class Base {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
object Test : Base {
private constructor() /* primary */ {
super/*Base*/()
/* <init>() */
}
val x: Int
field = 1
get
val y: Int
get
init {
<this>.#y = <this>.<get-x>()
}
}