e6f4d6e6fa
^KT-65406
22 lines
301 B
Kotlin
Vendored
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
|
|
}
|
|
|
|
}
|
|
|