Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/kt619.fir.kt
T

5 lines
110 B
Kotlin
Vendored

class A(t : Int) : Comparable<A> {
var i = t
override fun compareTo(other : A) = (this.i - other.i)
}