Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
SmartCastPointsResolveRequired1.kt
blob: 2b4a1ec43e2d6b8060b98a9aef432646ab558a7b [
file
]
fun foo
(
x
:
Any
?,
p
:
Int
)
{
if
(
p
>
0
)
{
val x
=
f
()
print
(
x
!!)
}
else
{
val x
=
g
()
print
(
x
!!)
}
<caret>
x
.
hashCode
()
}
fun f
():
Any
?
=
null
fun g
():
Any
?
=
null