blob: 767fe21a7a5832e81983e868b0e0eb4cc4282694 [file]
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{}