Files
kotlin-fork/compiler/testData/ir/irText/expressions/jvmInstanceFieldReference.kt.txt
T

25 lines
254 B
Plaintext
Vendored

class Derived : Base {
constructor() /* primary */ {
super/*Base*/()
/* InstanceInitializerCall */
}
init {
#value = 0
}
fun getValue(): Int {
return #value
}
fun setValue(value: Int) {
#value = value
}
}