Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/elvisExclExclMerge.fir.kt
T

7 lines
116 B
Kotlin
Vendored

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