blob: 543e7d750752c7c257f9e2e374959bd824cf8293 [file]
fun test(x: Any?): Any {
val z = x ?: x!!
// x is not null in both branches
<!DEBUG_INFO_SMARTCAST!>x<!>.hashCode()
return z
}