Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
IfNullWhileTrueWithBreak.kt
blob: c211e0ae271f08901927d679fd50cd4be06e54db [
file
]
fun foo
()
{
for
(
i
in
1.
.
10
)
{
val x
=
take
()
if
(
x
==
null
)
{
while
(
true
)
{
if
(
g
())
break
}
}
<caret>
x
.
hashCode
()
}
}
fun take
():
Any
?
=
null
fun f
():
Boolean
{}
fun g
():
Boolean
{}