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