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

22 lines
301 B
Kotlin
Vendored

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