Fix codegen tests after types enhancement

This commit is contained in:
Denis Zharkov
2015-06-18 13:33:19 +03:00
parent 1b44f77054
commit cfadda8061
2 changed files with 2 additions and 2 deletions
@@ -2,7 +2,7 @@ import java.util.AbstractMap
import java.util.Collections
class A : AbstractMap<Int, String>() {
override fun entrySet(): Set<Map.Entry<Int, String>> = Collections.emptySet()
override fun entrySet(): MutableSet<MutableMap.MutableEntry<Int, String>> = Collections.emptySet()
}
fun box(): String {