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