mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
11 lines
141 B
Kotlin
Vendored
11 lines
141 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
fun f(r: IntRange) {
|
|
for (i in r) {
|
|
}
|
|
}
|
|
|
|
// 0 iterator
|
|
// 0 getStart
|
|
// 0 getEnd
|
|
// 1 getFirst
|
|
// 1 getLast |