Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
IfBranchesSmartCast.kt
blob: b0c34d5a6b274bc463c59d697de1e345a584f58d [
file
]
fun foo
(
o
:
Any
?,
p
:
Int
)
{
if
(
p
>
0
)
{
if
(
o
==
null
)
return
}
else
{
if
(
o
!
is
String
)
return
}
<caret>
o
.
javaClass
}