1e0d9f4075
For smart casts, elvises, etc., there are no implicit casts in psi2fir in changed test data
22 lines
335 B
Plaintext
Vendored
22 lines
335 B
Plaintext
Vendored
class C {
|
|
constructor(x: Any?) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val s: String?
|
|
get
|
|
|
|
init {
|
|
<this>.#s = { // BLOCK
|
|
val tmp0_safe_receiver: Any? = x
|
|
when {
|
|
EQEQ(arg0 = tmp0_safe_receiver, arg1 = null) -> null
|
|
else -> tmp0_safe_receiver.toString()
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|