Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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"