Files
kotlin-fork/compiler/testData/psi/operators/untilOperatorGreater.kt
T
2022-05-31 08:42:56 +00:00

5 lines
89 B
Kotlin
Vendored

fun main() {
for (i in 0..>n) {}
for (i in 0 ..> n) {}
for (i in 0.. >n) {}
}