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