mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
- prohibit main(Array<String>) in favor of box(): String - move all script-related code to ScriptGenTest - remove unused environment-creating methods - inline trivial methods & other minor stuff
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"
|
|
}
|