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