Files
kotlin-fork/idea/testData/intentions/replaceRangeToWithUntil/rangeTo.kt
T

7 lines
84 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(a: Int) {
for (i in 0.rangeTo(a - 1)<caret>) {
}
}