Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
box
/
wasmStringSwitch
/
mixedStringAndNonStringComparisons.kt
blob: 34ce0e7de748b23d7c4be2ce6d891dbe76b46e9b [
file
]
fun box
():
String
{
val s
:
Any
=
"b"
return
if
(
s
==
"a"
)
{
"FAIL1"
}
else
if
(
s
==
"b"
)
{
"OK"
}
else
if
(
s
==
1
)
{
"FAIL2"
}
else
{
"FAIL3"
}
}