JS: Make AbstractList.size pure abstract.

#KT-7228 Fixed
This commit is contained in:
Ilya Gorbunov
2016-04-26 04:56:51 +03:00
parent 6b945ba103
commit a5fd95c7d9
+1 -1
View File
@@ -74,7 +74,7 @@ public abstract class AbstractList<E>() : AbstractCollection<E>(), MutableList<E
override fun subList(fromIndex: Int, toIndex: Int): MutableList<E> = noImpl
override val size: Int get() = noImpl
abstract override val size: Int
override fun equals(other: Any?): Boolean = noImpl