6 lines
127 B
Kotlin
Vendored
6 lines
127 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class A(t : Int) : Comparable<A> {
|
|
var i = t
|
|
override fun compareTo(other : A) = (this.i - other.i)
|
|
}
|