Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/notNullorNotNull.kt
T
2015-11-09 16:36:34 +03:00

6 lines
147 B
Kotlin
Vendored

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