Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
smartCastOnIf.kt
blob: 037b175026172ae1b8274e1152b252a0168fdc5a [
file
]
fun baz
(
s
:
String
?):
Int
{
return
if
(
s
==
null
)
{
""
}
else
{
val u
:
String
?
=
null
if
(
u
==
null
)
return
0
<!
DEBUG_INFO_SMARTCAST
!>
u
<!>
}.
length
}