Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
unit
/
nullableUnitInWhen1.kt
blob: 2d6768af748f6c4c0fe70c44470d4cfd4c603cee [
file
]
fun foo
()
{}
fun box
():
String
{
when
(
"A"
)
{
"B"
->
foo
()
else
->
null
}
foo
()
return
"OK"
}