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

6 lines
129 B
Kotlin
Vendored

fun bar(x: Int?): Int {
if (x != null) return -1
if (x == null) return -2
// Should be unreachable
return 2 + 2
}