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

8 lines
100 B
Kotlin
Vendored

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