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