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

7 lines
79 B
Kotlin
Vendored

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