Files
kotlin-fork/compiler/testData/ir/irText/expressions/setFieldWithImplicitCast.kt.txt
T

18 lines
236 B
Plaintext
Vendored

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