Files
kotlin-fork/idea/testData/inspectionsLocal/replaceRangeToWithUntil/operatorLong.kt.after
T
2017-05-26 09:48:04 +03:00

7 lines
72 B
Plaintext
Vendored

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