Files
kotlin-fork/idea/testData/inspectionsLocal/replaceRangeToWithUntil/operator.kt
T
2017-05-26 09:48:04 +03:00

7 lines
76 B
Kotlin
Vendored

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