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

22 lines
253 B
Kotlin
Vendored

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