blob: 12b94d3b210d820dd2bbdb25f1855ee3851b5fef [file]
fun foo() {
MainLoop@
for (i in 1..10) {
val x = take()
if (x == null) {
while (true) {
continue@MainLoop
}
}
<caret>x.hashCode()
}
}
fun take(): Any? = null