Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
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"
}