mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
27 lines
362 B
Kotlin
Vendored
27 lines
362 B
Kotlin
Vendored
class It {
|
|
operator fun next() = 5
|
|
}
|
|
|
|
class C {
|
|
operator fun iterator(): It = It()
|
|
}
|
|
|
|
class X {
|
|
var hasNext = true
|
|
operator 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"
|
|
}
|