Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
ifExprInConditionNonNull.fir.kt
blob: 10a55ca5ab2889c994cc32b148e4214aed1213ac [
file
]
fun baz
(
s
:
String
?,
b
:
Boolean
?):
String
{
val t
=
if
(
if
(
b
==
null
)
return
""
else
b
)
{
if
(
s
==
null
)
return
""
s
}
else
{
if
(
s
!=
null
)
return
s
""
}
return
t
}