Files
kotlin-fork/compiler/testData/loadKotlin/fun/PropagateSubclassOfComparable.kt
T
Evgeny Gerashchenko b8eb0c84ff Added 'synthetic' flag for bridge method.
#KT-3155 fixed
2012-12-13 14:36:41 +04:00

5 lines
200 B
Kotlin

package test
class PropagateSubclassOfComparable(): Comparable<PropagateSubclassOfComparable> {
override fun compareTo(other: PropagateSubclassOfComparable): Int = throw IllegalStateException()
}