Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
IfNullContinue.kt
blob: 13fa539f5d9578c70ce487f5d48591b5298ca2fe [
file
]
fun foo
()
{
for
(
i
in
1.
.
10
)
{
val x
=
take
()
if
(
x
==
null
)
continue
<caret>
x
.
hashCode
()
}
}
fun take
():
Any
?
=
null