Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
setFieldWithImplicitCast.kt.txt
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 */
}
}
}
}