Files
kotlin/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/NullableNothingIsExactlyNull.kt
2015-11-09 16:36:34 +03:00

9 lines
224 B
Kotlin
Vendored

fun test() {
val out : Int? = null
val x : Nothing? = null
if (out != <!ALWAYS_NULL!>x<!>)
<!DEBUG_INFO_SMARTCAST!>out<!>.plus(1)
if (out == <!ALWAYS_NULL!>x<!>) return
<!DEBUG_INFO_SMARTCAST!>out<!>.plus(1)
}