Files
kotlin/compiler/testData/codegen/controlStructures/compareBoxedIntegerToZero.kt
2012-10-30 22:54:20 +04:00

9 lines
196 B
Kotlin

fun box(): String {
val x: Int? = 0
if (x != 0) return "Fail $x"
if (0 != x) return "Fail $x"
if (!(x == 0)) return "Fail $x"
if (!(0 == x)) return "Fail $x"
return "OK"
}