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

10 lines
190 B
Plaintext

Resolve target: value-parameter val p: kotlin.Any?
----------------------------------------------
fun foo(p: Any?) {
do {
print(p!!)
} while (x())
<caret>p.hashCode()
}