blob: 7a2105679ab6a354e3c5aefa5318043edd775321 [file]
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