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

21 lines
300 B
Plaintext
Vendored

object A {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
private val a: String
field = "$"
private get
private val b: String
field = "1234" + <this>.<get-a>().toString()
private get
private val c: Int
field = 10000
private get
}