b216bbb844
#KT-619 Fixed
5 lines
110 B
Kotlin
Vendored
5 lines
110 B
Kotlin
Vendored
class A(t : Int) : Comparable<A> {
|
|
var i = t
|
|
override fun compareTo(other : A) = (this.i - other.i)
|
|
}
|