Files
kotlin-fork/compiler/testData/ir/irText/classes/objectWithInitializers.kt.txt
T
2024-02-16 10:19:38 +00:00

30 lines
315 B
Kotlin
Vendored

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