Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
when
/
matchNotNullAgainstNullable.kt
blob: c0598674113858f59d303ece7a8d9201581112e4 [
file
]
fun foo
(
i
:
Int
,
j
:
Int
?):
String
=
when
(
i
)
{
j
->
"OK"
else
->
"Fail"
}
fun box
():
String
=
foo
(
0
,
0
)