blob: 27719f2ec393476f74b13e2a8091d3480bbf8874 [file]
Resolve target: val x: kotlin.Any?
----------------------------------------------
fun foo() {
MainLoop@
for (i in 1..10) {
val x = take()
if (x == null) {
while (true) {
break@MainLoop
}
}
<caret>x.hashCode()
}
}
fun take(): Any? = null