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

12 lines
155 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
class C {
operator fun compareTo(c: C): Int? = null
}
fun test(c: C) {
c < c
c <= c
c >= c
c > c
}