Files
kotlin/compiler/testData/codegen/bytecodeText/forLoop/primitiveRange.kt
2018-12-21 16:20:45 +01:00

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