Add ABI tests for classes extending Number and CharSequence
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
abstract class AbstractCharSequence : CharSequence
|
||||
|
||||
class MyCharSequence : CharSequence {
|
||||
override val length: Int get() = 0
|
||||
|
||||
override fun get(index: Int): Char = throw Exception()
|
||||
|
||||
override fun subSequence(startIndex: Int, endIndex: Int): CharSequence = this
|
||||
}
|
||||
Reference in New Issue
Block a user