Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorsOverloading/until/customDefault.kt
T
Ilya Chernikov bb996c1b27 Switch kotlin version to 1.8
with appropriate fixes in testdata, tests and other
places.
2022-06-29 10:20:30 +02:00

11 lines
145 B
Kotlin
Vendored

// FIR_IDENTICAL
class A {
operator fun rangeUntil(other: A): Iterable<A> = TODO()
}
fun main(n: A, f: A) {
for (i in f..<n) {
}
}