Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
boxingOptimization
/
kt5588.kt
blob: ece5914c5043eb5811d5848537d47ada3b322854 [
file
]
fun box
()
:
String
{
val s
=
"notA"
val id
=
when
(
s
)
{
"a"
->
1
else
->
null
}
if
(
id
==
null
)
return
"OK"
return
"fail"
}