Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/kt619.kt
T
Pavel V. Talanov b216bbb844 KT-619 Type inference fails
#KT-619 Fixed
2012-07-24 15:53:39 +04:00

5 lines
110 B
Kotlin
Vendored

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