21 lines
266 B
Plaintext
Vendored
21 lines
266 B
Plaintext
Vendored
class Derived : Base {
|
|
constructor() /* primary */ {
|
|
TODO("IrDelegatingConstructorCall")
|
|
/* InstanceInitializerCall */
|
|
|
|
}
|
|
|
|
fun setValue(v: Any) {
|
|
when {
|
|
v is String -> { // BLOCK
|
|
#value = v /*as String */
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|