5 lines
200 B
Kotlin
5 lines
200 B
Kotlin
package test
|
|
|
|
class PropagateSubclassOfComparable(): Comparable<PropagateSubclassOfComparable> {
|
|
override fun compareTo(other: PropagateSubclassOfComparable): Int = throw IllegalStateException()
|
|
} |