8 lines
109 B
Plaintext
Vendored
8 lines
109 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo() {
|
|
val x = (1..4).asSequence()
|
|
|
|
for (it in x) {
|
|
it.equals(1)
|
|
}
|
|
} |