Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
box
/
wasmStringSwitch
/
whenFunctionCall.kt
blob: 2b096ad501e69de67445e108c321218256da4a42 [
file
]
fun foo
()
=
"OK"
fun box
():
String
=
when
{
foo
()
==
""
->
"FAIL1"
foo
()
==
"foo"
->
"FAIL2"
else
->
foo
()
}