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