Files
kotlin-fork/compiler/testData/codegen/box/ieee754/smartCastToInt.kt
T
2021-01-11 12:01:48 +03:00

9 lines
137 B
Kotlin
Vendored

fun test(x: Any?, y: Double) =
x is Int && x < y
fun box(): String =
if (!test(0, -0.0))
"OK"
else
"Failed"