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

7 lines
79 B
Plaintext
Vendored

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