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

12 lines
276 B
Plaintext

Resolve target: value-parameter val p: kotlin.Any? smart-cast to kotlin.Any
----------------------------------------------
fun x(s: Any): Boolean{}
fun foo(p: Any?, p1: Any?) {
while(x(p!!)) {
/* STATEMENT DELETED: print(p1!!) */
}
<caret>p.hashCode()
}