Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
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
)