// "Add non-null asserted (!!) call" "true" class Some { operator fun iterator(): Iterator = null!! } fun foo() { val test: Some? = Some() for (i in test) { } }