Files
kotlin-fork/backend.native/tests/external/codegen/box/elvis/primitive.kt
T
2017-03-13 15:31:46 +03: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"
}