f2cf3a8e7b
#KT-12273 Fixed
9 lines
153 B
Kotlin
Vendored
9 lines
153 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
fun test(p1: Operation, p2: Operation) {
|
|
p1.<caret>compareTo(p2) < 0
|
|
}
|
|
|
|
class Operation {
|
|
fun compareTo(other: Operation) = 0
|
|
} |