Adjust testData after contains transformation

This commit is contained in:
Denis Zharkov
2015-10-08 11:09:02 +03:00
parent 35783f129b
commit e9cd9db2a7
15 changed files with 36 additions and 36 deletions
@@ -4,8 +4,8 @@ class MyCollection<T> : Collection<List<Iterator<T>>> {
override fun iterator() = null!!
override val size: Int get() = null!!
override fun isEmpty(): Boolean = null!!
override fun contains(o: Any?): Boolean = null!!
override fun containsAll(c: Collection<Any?>): Boolean = null!!
override fun contains(o: List<Iterator<T>>): Boolean = null!!
override fun containsAll(c: Collection<List<Iterator<T>>>): Boolean = null!!
}
fun box(): String {