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

13 lines
252 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()
}