Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
wasmStringSwitch
/
nullableString.kt
blob: c584d5ae73b52b4d9a1a5e301eca015ec52b4cbe [
file
]
fun box
():
String
{
val s
:
String
?
=
"b"
return
if
(
s
==
"a"
)
{
"FAIL1"
}
else
if
(
s
==
"b"
)
{
"OK"
}
else
if
(
s
==
null
)
{
"FAIL2"
}
else
{
"FAIL3"
}
}