Some more bytecode listing tests for JVM_IR

This commit is contained in:
Dmitry Petrov
2020-09-23 16:03:51 +03:00
parent 25ea3df5ca
commit 99dbeecc40
7 changed files with 477 additions and 1 deletions
@@ -0,0 +1,18 @@
// FULL_JDK
// See: KT-42114, KT-42115
abstract class AbstractIterator : Iterator<String>
abstract class AbstractIterable : Iterable<String>
abstract class AbstractCollection : Collection<String>
abstract class AbstractSet : Set<String>
abstract class AbstractList : List<String>
abstract class AbstractListIterator : ListIterator<String>
abstract class AbstractMap : Map<String, Number>
abstract class AbstractMapEntry : Map.Entry<String, Number>