Implement hack to support both remove() and removeAt() in MutableList<Int>
Also add couple of tests about CharSequence.get
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
abstract class A1 : CharSequence {}
|
||||
|
||||
abstract class A2 : CharSequence {
|
||||
override fun get(index: Int) = 'z';
|
||||
}
|
||||
|
||||
// 2 public final bridge charAt
|
||||
Reference in New Issue
Block a user