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

8 lines
100 B
Kotlin
Vendored

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