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