Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
ieee754
/
anyCastToPrimitiveCompareTo2.kt
blob: 846debe6bc24f60acb313ecea544c8337997e1a6 [
file
]
class
C
(
val value
:
Any
)
fun box
():
String
{
val c1
=
C
(
1.1
)
val c2
=
C
(
1
)
val cmp
=
(
c1
.
value
as
Double
).
compareTo
(
c2
.
value
as
Int
)
if
(
cmp
!=
1
)
return
"Failed: cmp=$cmp"
return
"OK"
}