db5843adc8
They are not exactly 'compareTo' calls (although annotated with a related 'compareTo' function), and require special treatment in BEs.
5 lines
162 B
Kotlin
Vendored
5 lines
162 B
Kotlin
Vendored
fun test1(a: String, b: String) = a > b
|
|
fun test2(a: String, b: String) = a < b
|
|
fun test3(a: String, b: String) = a >= b
|
|
fun test4(a: String, b: String) = a <= b
|