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