Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
ieee754
/
smartCastToInt.kt
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"