Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorsOverloading/until/customDisabled.fir.kt
T

11 lines
162 B
Kotlin
Vendored

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