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

13 lines
255 B
Plaintext

Resolve target: value-parameter val p: kotlin.Any?
----------------------------------------------
fun x(): Boolean{}
fun foo(p: Any?) {
while(true) {
print(p!!)
/* STATEMENT DELETED: if (x()) break */
}
<caret>p.hashCode()
}