blob: 65bd5877f72e1793a27a94bcab4d5f8142fb16a9 [file]
Resolve target: val x: kotlin.Any?
----------------------------------------------
fun foo() {
for (i in 1..10) {
val x = take()
/* STATEMENT DELETED: if (x == null) { while (true) { if (g()) break } } */
<caret>x.hashCode()
}
}
fun take(): Any? = null
fun f(): Boolean{}
fun g(): Boolean{}