Files
kotlin-fork/compiler/testData/ir/irText/classes/objectWithInitializers.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

29 lines
314 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>()
}
}