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