Files
kotlin-fork/compiler/testData/codegen/box/elvis/primitive.kt
T
2018-07-10 13:34:19 +03:00

7 lines
161 B
Kotlin
Vendored

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