Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
compareBoxedIntegerToZero.kt
blob: 6b2091be148bb2a609586362d0c8507319c9f319 [
file
]
fun box
():
String
{
val x
:
Int
?
=
0
if
(
x
!=
0
)
return
"Fail $x"
if
(
0
!=
x
)
return
"Fail $x"
if
(!(
x
==
0
))
return
"Fail $x"
if
(!(
0
==
x
))
return
"Fail $x"
return
"OK"
}