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