blob: 9f283474ba5067ff7a862b1cf3f1b71763d31129 [file]
class Derived : Base {
constructor() /* primary */ {
super/*Base*/()
/* <init>() */
}
fun setValue(v: Any) {
when {
v is String -> { // BLOCK
<this>(super<Derived>).#value = v /*as String */
}
}
}
}