22 lines
251 B
Plaintext
Vendored
22 lines
251 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
|
|
}
|
|
|
|
}
|
|
|