Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
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"
}
}