mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
12 lines
199 B
Kotlin
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()<!>) {}
|
|
} |