Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
boxing
/
boxBoolean.kt
blob: fc084cb7059ceb43aa4ab04ccf08fe984d6565db [
file
]
fun box
():
String
{
val lhs
:
Any
?
=
true
val rhs
:
Any
?
=
false
if
(
lhs
is
Boolean
&&
rhs
is
Boolean
)
{
if
(
lhs
.
compareTo
(
rhs
)
==
1
)
return
"OK"
}
return
"Fail"
}