blob: 217cce1350a1b8cff3ae8e2f4cfbcad8e15a5797 [file] [log] [blame]
// "Add non-null asserted (!!) call" "true"
class Some {
operator fun iterator(): Iterator<Int> = null!!
}
fun foo() {
val test: Some? = Some()
for (i in <caret>test) { }
}