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