25 lines
254 B
Plaintext
Vendored
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
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|