bb996c1b27
with appropriate fixes in testdata, tests and other places.
11 lines
145 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
}
|