2cfd776092
handle accordingly (e.g., do not read `step` property).
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
|
|
// 0 getStep |