Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
WhileTrue.kt
blob: ec8d081c6dc97366097104dd17130b60c2c5c695 [
file
]
fun x
():
Boolean
{}
fun foo
(
p
:
Any
?)
{
while
(
true
)
{
print
(
p
!!)
if
(
x
())
break
}
<caret>
p
.
hashCode
()
}