mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
27 lines
335 B
Kotlin
27 lines
335 B
Kotlin
class It {
|
|
fun next() = 5
|
|
}
|
|
|
|
class C {
|
|
fun iterator(): It = It()
|
|
}
|
|
|
|
class X {
|
|
var hasNext = true
|
|
fun It.hasNext() = if (hasNext) {hasNext = false; true} else false
|
|
|
|
fun test() {
|
|
for (i in C()) {
|
|
foo(i)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
fun foo(x: Int) {}
|
|
|
|
fun box(): String {
|
|
X().test()
|
|
return "OK"
|
|
}
|