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

7 lines
91 B
Kotlin
Vendored

fun foo(p: Any?) {
do {
print(p!!)
} while (x())
<caret>p.hashCode()
}