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

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)
}