blob: e1f8b78ed1e0ad8ef25b348db1b791edfe24b4a3 [file]
Resolve target: value-parameter p: kotlin.Any? smart-cast to kotlin.Any
----------------------------------------------
fun x(): Boolean{}
fun foo(p: Any?) {
while(true) {
print(p!!)
/* STATEMENT DELETED: if (x()) break */
}
<caret>p.hashCode()
}