10 lines
268 B
Plaintext
10 lines
268 B
Plaintext
Resolve target: value-parameter val p: kotlin.Boolean? smart-cast to kotlin.Boolean
|
|
----------------------------------------------
|
|
fun foo(p: Boolean?, p1: Any?) {
|
|
if (p!!) {
|
|
/* STATEMENT DELETED: print(p1!!.hashCode()) */
|
|
}
|
|
|
|
<caret>p.hashCode()
|
|
}
|