Files
kotlin-fork/compiler/testData/codegen/box/elvis/primitive.kt
T
2013-02-06 17:54:27 +04:00

7 lines
161 B
Kotlin

fun box(): String {
if ((42 ?: 239) != 42) return "Fail Int"
if ((42.toLong() ?: 239.toLong()) != 42.toLong()) return "Fail Long"
return "OK"
}