blob: 7577b909d7b5ddccb24995e2420139e91003638a [file]
fun foo() {
for (i in 1..10) {
val x = take()
if (x == null) break
<caret>x.hashCode()
}
}
fun take(): Any? = null