Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/WhileTrue.kt
T
2014-11-24 20:11:24 +03:00

10 lines
131 B
Kotlin
Vendored

fun x(): Boolean{}
fun foo(p: Any?) {
while(true) {
print(p!!)
if (x()) break
}
<caret>p.hashCode()
}