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