Files
kotlin-fork/idea/testData/inspectionsLocal/replaceRangeToWithUntil/parentheses.kt
T
2019-02-05 11:22:59 +03:00

7 lines
93 B
Kotlin
Vendored

// WITH_RUNTIME
fun example() {
val max = 5
for (i in 0..<caret>(max - 1)) {
}
}