class Coll { fun iterator(): It? = null } class It { fun next() = 1 fun hasNext() = false } fun test() { for (x in Coll()) {} }