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