ea9572ad28
non-specialized progressions, including "step" progressions. DefaultProgressionHandler uses the "first/last/step" properties of the progression when building the loop header.
11 lines
128 B
Kotlin
Vendored
11 lines
128 B
Kotlin
Vendored
fun f(r: IntRange) {
|
|
for (i in r) {
|
|
}
|
|
}
|
|
|
|
// 0 iterator
|
|
// 0 getStart
|
|
// 0 getEnd
|
|
// 1 getFirst
|
|
// 1 getLast
|
|
// 1 getStep |