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

7 lines
79 B
Kotlin
Vendored

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