Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
wasmStringSwitch
/
rhsStringConcatenation.kt
blob: 2b364442d986a91b98b63e95cecf91dcb26f9c4f [
file
]
fun box
():
String
{
val a
=
"O"
val b
=
a
+
"K"
return
if
(
b
==
"FAIL"
)
{
"FAIL1"
}
else
if
(
b
==
"OK"
)
{
"OK"
}
else
{
"FAIL2"
}
}