Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
wasmStringSwitch
/
ifFunctionCallsChain.kt
blob: 3f5174fc4ac75ea5c121b0969111f4acbc323271 [
file
]
private
fun foo
():
String
=
"b"
fun box
():
String
=
if
(
foo
()
==
"a"
)
{
"FAIL1"
}
else
if
(
foo
()
==
"b"
)
{
"OK"
}
else
{
"FAIL2"
}