Rename some of builtin parameters

This commit is contained in:
Denis Zharkov
2015-10-16 15:58:27 +03:00
parent 1c02231cda
commit 28c46b73f1
41 changed files with 451 additions and 451 deletions
@@ -9,7 +9,7 @@ import java.util.*;
abstract class B<T> : MutableList<T>, AbstractList<T>() {
override fun removeAt(index: Int): T = null!!
override fun remove(o: T): Boolean = null!!
override fun remove(element: T): Boolean = null!!
}
fun main(a: A<String>, b: B<String>, c: ArrayList<String>) {