Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
IfNullContinue.dump
blob: bb300aad493410ed9923dd2e973ff49d09c72a53 [
file
]
Resolve
target
:
val x
:
kotlin
.
Any
?
smart
-
cast to kotlin
.
Any
----------------------------------------------
fun foo
()
{
for
(
i
in
1.
.
10
)
{
val x
=
take
()
if
(
x
==
null
)
continue
<caret>
x
.
hashCode
()
}
}
fun take
():
Any
?
=
null