Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
ifCascadeExprNotNull.fir.kt
blob: 563e1c1bf0373f1129d576a00b6ff9d800c39841 [
file
]
fun baz
(
s
:
String
?):
String
{
val t
=
if
(
s
==
null
)
{
""
}
else
if
(
s
==
""
)
{
val u
:
String
?
=
null
if
(
u
==
null
)
return
""
u
}
else
{
s
}
return
t
}