Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorsOverloading/compareToNullable.fir.kt
T
2021-08-18 16:03:01 +03:00

13 lines
193 B
Kotlin
Vendored

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