Files
kotlin-fork/idea/testData/intentions/replaceUntilWithRangeTo/simple.kt.after
T

7 lines
76 B
Plaintext
Vendored

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