Files
kotlin/compiler/testData/diagnostics/tests/controlStructures/forWithNullableIterator.kt
2012-08-24 19:49:33 +04:00

12 lines
199 B
Kotlin

class Coll {
fun iterator(): It? = null
}
class It {
fun next() = 1
fun hasNext() = false
}
fun test() {
for (x in <!HAS_NEXT_FUNCTION_NONE_APPLICABLE, NEXT_NONE_APPLICABLE!>Coll()<!>) {}
}