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

13 lines
320 B
Plaintext

Resolve target: val x: kotlin.Any?
----------------------------------------------
fun foo() {
for (i in 1..10) {
val x = take()
// STATEMENT DELETED: if (x == null) { while (true) { do { println() } while(f()) break } }
<caret>x.hashCode()
}
}
fun take(): Any? = null
fun f(): Boolean{}