[FE Test] Move FIR dumps for LoadCompiledKotlin tests close to original testdata

This commit is contained in:
Dmitriy Novozhilov
2023-04-17 12:24:15 +03:00
committed by Space Team
parent de33a21fd1
commit e94a64a4f2
474 changed files with 0 additions and 0 deletions
@@ -0,0 +1,6 @@
public open class AllBoundsInWhen : R|kotlin/Any| {
public open fun <T : R|java/io/Serializable|> foo(): R|kotlin/Unit|
public constructor(): R|test/AllBoundsInWhen|
}
@@ -0,0 +1,6 @@
public open class ArrayType : R|kotlin/Any| {
public open fun foo(): R|kotlin/Array<kotlin/String>|
public constructor(): R|test/ArrayType|
}
@@ -0,0 +1,4 @@
public open class ConstructorWithNewTypeParams<T> : R|kotlin/Any| {
public constructor<T>(first: R|kotlin/Any|): R|test/ConstructorWithNewTypeParams<T>|
}
@@ -0,0 +1,4 @@
public open class ConstructorWithParentTypeParams<T> : R|kotlin/Any| {
public constructor<T>(first: R|T|): R|test/ConstructorWithParentTypeParams<T>|
}
@@ -0,0 +1,4 @@
public open class ConstructorWithSeveralParams : R|kotlin/Any| {
public constructor(integer: R|kotlin/Int|, intField: R|kotlin/Int|, collection: R|java/util/ArrayList<kotlin/String>|): R|test/ConstructorWithSeveralParams|
}
@@ -0,0 +1,4 @@
public open class ConstructorWithoutParams : R|kotlin/Any| {
public constructor(): R|test/ConstructorWithoutParams|
}
@@ -0,0 +1,6 @@
public open class CustomProjectionKind : R|kotlin/Any| {
public open fun foo(): R|kotlin/collections/MutableList<out kotlin/Number>|
public constructor(): R|test/CustomProjectionKind|
}
@@ -0,0 +1,6 @@
public open class MethodWithFunctionTypes : R|kotlin/Any| {
public open fun foo(f: R|(kotlin/String?) -> kotlin/String|): R|(kotlin/String.() -> kotlin/String?)?|
public constructor(): R|test/MethodWithFunctionTypes|
}
@@ -0,0 +1,6 @@
public open class MethodWithGenerics : R|kotlin/Any| {
public open fun foo(a: R|kotlin/String|, b: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String?, kotlin/String>?>|): R|kotlin/String|
public constructor(): R|test/MethodWithGenerics|
}
@@ -0,0 +1,6 @@
public open class MethodWithMappedClasses : R|kotlin/Any| {
public open fun <T> copy(dest: R|kotlin/collections/MutableList<in T>|, src: R|kotlin/collections/List<T>|): R|kotlin/Unit|
public constructor(): R|test/MethodWithMappedClasses|
}
@@ -0,0 +1,6 @@
public open class MethodWithTypeParameters : R|kotlin/Any| {
public open fun <A, B : R|java/lang/Runnable|, R|kotlin/collections/List<kotlin/Cloneable>|> foo(a: R|A|, b: R|kotlin/collections/List<B>|, c: R|kotlin/collections/MutableList<in kotlin/String?>|): R|kotlin/Unit|
public constructor(): R|test/MethodWithTypeParameters|
}
@@ -0,0 +1,6 @@
public open class MethodWithVararg : R|kotlin/Any| {
public open fun foo(vararg s: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
public constructor(): R|test/MethodWithVararg|
}
@@ -0,0 +1,16 @@
public open class PropertyArrayTypes<T> : R|kotlin/Any| {
public final var array: R|kotlin/Array<kotlin/String>|
public get(): R|kotlin/Array<kotlin/String>|
public set(value: R|kotlin/Array<kotlin/String>|): R|kotlin/Unit|
public final var arrayOfArrays: R|kotlin/Array<kotlin/Array<kotlin/String>>|
public get(): R|kotlin/Array<kotlin/Array<kotlin/String>>|
public set(value: R|kotlin/Array<kotlin/Array<kotlin/String>>|): R|kotlin/Unit|
public final var genericArray: R|kotlin/Array<T>|
public get(): R|kotlin/Array<T>|
public set(value: R|kotlin/Array<T>|): R|kotlin/Unit|
public constructor<T>(): R|test/PropertyArrayTypes<T>|
}
@@ -0,0 +1,20 @@
public open class PropertyComplexTypes<T> : R|kotlin/Any| {
public final var genericType: R|T|
public get(): R|T|
public set(value: R|T|): R|kotlin/Unit|
public final var listDefinedGeneric: R|java/util/ArrayList<kotlin/String>|
public get(): R|java/util/ArrayList<kotlin/String>|
public set(value: R|java/util/ArrayList<kotlin/String>|): R|kotlin/Unit|
public final var listGeneric: R|java/util/ArrayList<T>|
public get(): R|java/util/ArrayList<T>|
public set(value: R|java/util/ArrayList<T>|): R|kotlin/Unit|
public final var listOfGenericList: R|java/util/ArrayList<java/util/ArrayList<T>>|
public get(): R|java/util/ArrayList<java/util/ArrayList<T>>|
public set(value: R|java/util/ArrayList<java/util/ArrayList<T>>|): R|kotlin/Unit|
public constructor<T>(): R|test/PropertyComplexTypes<T>|
}
@@ -0,0 +1,12 @@
public open class PropertySimpleType : R|kotlin/Any| {
public final var fieldOne: R|kotlin/String|
public get(): R|kotlin/String|
public set(value: R|kotlin/String|): R|kotlin/Unit|
public final var fieldTwo: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/PropertySimpleType|
}
@@ -0,0 +1,10 @@
public final class StarProjection : R|kotlin/Any| {
public final fun foo(): R|test/StarProjection.MyClass<*>|
public constructor(): R|test/StarProjection|
public abstract interface MyClass<T : R|kotlin/CharSequence?|> : R|kotlin/Any| {
}
}
@@ -0,0 +1,6 @@
public open class AddingNullability : R|kotlin/Any| {
public open fun foo(): R|kotlin/Int|
public constructor(): R|test/AddingNullability|
}
@@ -0,0 +1,6 @@
public open class ConflictingProjectionKind : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/collections/List<kotlin/Number>?|): R|kotlin/Unit|
public constructor(): R|test/ConflictingProjectionKind|
}
@@ -0,0 +1,8 @@
public open class ExplicitFieldGettersAndSetters : R|kotlin/Any| {
public final var foo: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/ExplicitFieldGettersAndSetters|
}
@@ -0,0 +1,6 @@
public open class ExtraUpperBound : R|kotlin/Any| {
public open fun <A : R|java/lang/Runnable?|> foo(): R|kotlin/String?|
public constructor(): R|test/ExtraUpperBound|
}
@@ -0,0 +1,6 @@
public open class MissingUpperBound : R|kotlin/Any| {
public open fun <A : R|java/lang/Runnable?|, R|kotlin/Cloneable?|> foo(): R|kotlin/String?|
public constructor(): R|test/MissingUpperBound|
}
@@ -0,0 +1,8 @@
public open class NoFieldTypeRef : R|kotlin/Any| {
public final var foo: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/NoFieldTypeRef|
}
@@ -0,0 +1,6 @@
public open class NotVarargReplacedWithVararg : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/NotVarargReplacedWithVararg|
}
@@ -0,0 +1,6 @@
public open class RedundantProjectionKind : R|kotlin/Any| {
public open fun foo(list: R|kotlin/collections/List<kotlin/Number>|): R|kotlin/Unit|
public constructor(): R|test/RedundantProjectionKind|
}
@@ -0,0 +1,6 @@
public open class ReturnTypeMissing : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|): R|kotlin/Int|
public constructor(): R|test/ReturnTypeMissing|
}
@@ -0,0 +1,6 @@
public open class SyntaxError : R|kotlin/Any| {
public open fun foo(): R|kotlin/Int?|
public constructor(): R|test/SyntaxError|
}
@@ -0,0 +1,8 @@
public open class SyntaxErrorInFieldAnnotation : R|kotlin/Any| {
public final var foo: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/SyntaxErrorInFieldAnnotation|
}
@@ -0,0 +1,6 @@
public open class VarargReplacedWithNotVararg : R|kotlin/Any| {
public open fun foo(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
public constructor(): R|test/VarargReplacedWithNotVararg|
}
@@ -0,0 +1,8 @@
public open class WrongFieldInitializer : R|kotlin/Any| {
public final var foo: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/WrongFieldInitializer|
}
@@ -0,0 +1,11 @@
public open class WrongFieldMutability : R|kotlin/Any| {
public final val fooFinal: R|kotlin/String?|
public get(): R|kotlin/String?|
public final var fooNotFinal: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/WrongFieldMutability|
}
@@ -0,0 +1,8 @@
public open class WrongFieldName : R|kotlin/Any| {
public final var foo: R|kotlin/String?|
public get(): R|kotlin/String?|
public set(value: R|kotlin/String?|): R|kotlin/Unit|
public constructor(): R|test/WrongFieldName|
}
@@ -0,0 +1,6 @@
public open class WrongMethodName : R|kotlin/Any| {
public open fun foo(): R|kotlin/String?|
public constructor(): R|test/WrongMethodName|
}
@@ -0,0 +1,6 @@
public open class WrongProjectionKind : R|kotlin/Any| {
public open fun copy(p0: R|kotlin/Array<out kotlin/Number>?|, p1: R|kotlin/Array<out kotlin/Number>?|): R|kotlin/collections/MutableList<kotlin/Number>?|
public constructor(): R|test/WrongProjectionKind|
}
@@ -0,0 +1,6 @@
public open class WrongReturnTypeStructure : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>?|): R|kotlin/String?|
public constructor(): R|test/WrongReturnTypeStructure|
}
@@ -0,0 +1,6 @@
public open class WrongTypeName1 : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|): R|kotlin/String?|
public constructor(): R|test/WrongTypeName1|
}
@@ -0,0 +1,6 @@
public open class WrongTypeName2 : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|): R|kotlin/String?|
public constructor(): R|test/WrongTypeName2|
}
@@ -0,0 +1,6 @@
public open class WrongTypeName3 : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|): R|kotlin/String?|
public constructor(): R|test/WrongTypeName3|
}
@@ -0,0 +1,6 @@
public open class WrongTypeParameterBoundStructure1 : R|kotlin/Any| {
public open fun <A, B : R|java/lang/Runnable?|, R|kotlin/collections/List<kotlin/Cloneable>?|> foo(p0: R|A?|, p1: R|kotlin/collections/List<B>?|): R|kotlin/Unit|
public constructor(): R|test/WrongTypeParameterBoundStructure1|
}
@@ -0,0 +1,6 @@
public open class WrongTypeParameterBoundStructure2 : R|kotlin/Any| {
public open fun <A, B : R|java/lang/Runnable?|, R|kotlin/collections/List<kotlin/Cloneable>?|> foo(p0: R|A?|, p1: R|kotlin/collections/List<B>?|): R|kotlin/Unit|
public constructor(): R|test/WrongTypeParameterBoundStructure2|
}
@@ -0,0 +1,6 @@
public open class WrongTypeParametersCount : R|kotlin/Any| {
public open fun <A, B> foo(p0: R|A?|, p1: R|kotlin/collections/List<B>?|): R|kotlin/Unit|
public constructor(): R|test/WrongTypeParametersCount|
}
@@ -0,0 +1,6 @@
public open class WrongValueParameterStructure1 : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>?|): R|kotlin/String?|
public constructor(): R|test/WrongValueParameterStructure1|
}
@@ -0,0 +1,6 @@
public open class WrongValueParameterStructure2 : R|kotlin/Any| {
public open fun foo(p0: R|kotlin/String?|, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>?|): R|kotlin/String?|
public constructor(): R|test/WrongValueParameterStructure2|
}
@@ -0,0 +1,6 @@
public open class WrongValueParametersCount : R|kotlin/Any| {
public open fun foo(): R|kotlin/Int?|
public constructor(): R|test/WrongValueParametersCount|
}
@@ -0,0 +1,32 @@
public abstract interface PropagateTypeArgumentNullable : R|kotlin/Any| {
public abstract interface Sub : R|test/PropagateTypeArgumentNullable.Super| {
public abstract fun invOutR(): R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|
public abstract fun invOutS(p: R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
public abstract fun invR(): R|kotlin/collections/MutableList<kotlin/String?>|
public abstract fun outOutS(p: R|kotlin/collections/List<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
public abstract fun outR(): R|kotlin/collections/List<kotlin/String?>|
public abstract fun outS(p: R|kotlin/collections/List<kotlin/String?>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun invOutR(): R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|
public abstract fun invOutS(p: R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
public abstract fun invR(): R|kotlin/collections/MutableList<kotlin/String?>|
public abstract fun outOutS(p: R|kotlin/collections/List<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
public abstract fun outR(): R|kotlin/collections/List<kotlin/String?>|
public abstract fun outS(p: R|kotlin/collections/List<kotlin/String?>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface ChangeProjectionKind1 : R|kotlin/Any| {
public abstract interface Sub : R|test/ChangeProjectionKind1.Super| {
public abstract fun foo(p: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface ChangeProjectionKind2 : R|kotlin/Any| {
public abstract interface Sub : R|test/ChangeProjectionKind2.Super| {
public abstract fun foo(p: R|kotlin/collections/MutableList<kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/MutableList<kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,19 @@
public abstract interface DeeplySubstitutedClassParameter : R|kotlin/Any| {
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter.Super<E>| {
public abstract fun foo(t: R|E|): R|kotlin/Unit|
}
public abstract interface Sub : R|test/DeeplySubstitutedClassParameter.Middle<kotlin/String>| {
public abstract fun foo(t: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(t: R|T|): R|kotlin/Unit|
}
}
@@ -0,0 +1,17 @@
public abstract interface DeeplySubstitutedClassParameter2 : R|kotlin/Any| {
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter2.Super<E>| {
}
public abstract interface Sub : R|test/DeeplySubstitutedClassParameter2.Middle<kotlin/String>| {
public abstract fun foo(t: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(t: R|T|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritMutability : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritMutability.Super| {
public abstract fun foo(p: R|kotlin/collections/MutableList<kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/MutableList<kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNotVararg : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNotVararg.Super| {
public abstract fun foo(p0: R|kotlin/Array<out kotlin/String>?|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/Array<out kotlin/String>?|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNotVarargInteger : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNotVarargInteger.Super| {
public abstract fun foo(p0: R|kotlin/Array<out kotlin/Int>?|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/Array<out kotlin/Int>?|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNotVarargNotNull : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNotVarargNotNull.Super| {
public abstract fun foo(p: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNotVarargPrimitive : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNotVarargPrimitive.Super| {
public abstract fun foo(p0: R|kotlin/IntArray?|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/IntArray?|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNullability : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNullability.Super| {
public abstract fun foo(p0: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/String|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritProjectionKind : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritProjectionKind.Super| {
public abstract fun foo(p: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritReadOnliness : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritReadOnliness.Super| {
public abstract fun foo(p: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritVararg : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritVararg.Super| {
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritVarargInteger : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritVarargInteger.Super| {
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/Int?>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/Int?>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritVarargNotNull : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritVarargNotNull.Super| {
public abstract fun foo(vararg p: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(vararg p: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritVarargPrimitive : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritVarargPrimitive.Super| {
public abstract fun foo(vararg p0: R|kotlin/IntArray|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(vararg p0: R|kotlin/IntArray|): R|kotlin/Unit|
}
}
@@ -0,0 +1,21 @@
public abstract interface Kt3302 : R|kotlin/Any| {
public abstract interface BSONObject : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun put(p0: R|kotlin/String|, p1: R|kotlin/Any|): R|kotlin/Any?|
}
public abstract interface BasicBSONObject : R|test/Kt3302.LinkedHashMap<kotlin/String, kotlin/Any>|, R|test/Kt3302.BSONObject| {
public abstract fun put(key: R|kotlin/String|, value: R|kotlin/Any|): R|kotlin/Any?|
}
public abstract interface LinkedHashMap<K, V> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun put(key: R|K|, value: R|V|): R|V?|
}
}
@@ -0,0 +1,14 @@
public abstract interface MutableToReadOnly : R|kotlin/Any| {
public abstract interface Sub : R|test/MutableToReadOnly.Super| {
public abstract fun foo(p: R|kotlin/collections/MutableList<kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/MutableList<kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface NotNullToNullable : R|kotlin/Any| {
public abstract interface Sub : R|test/NotNullToNullable.Super| {
public abstract fun foo(p0: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/String|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface NullableToNotNull : R|kotlin/Any| {
public abstract interface Sub : R|test/NullableToNotNull.Super| {
public abstract fun foo(p0: R|kotlin/String?|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/String?|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface NullableToNotNullKotlinSignature : R|kotlin/Any| {
public abstract interface Sub : R|test/NullableToNotNullKotlinSignature.Super| {
public abstract fun foo(p: R|kotlin/String?|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/String?|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface OverrideWithErasedParameter : R|kotlin/Any| {
public abstract interface Sub<T> : R|test/OverrideWithErasedParameter.Super<T>| {
public abstract fun foo(p0: R|T?|): R|kotlin/Unit|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|T?|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface ReadOnlyToMutable : R|kotlin/Any| {
public abstract interface Sub : R|test/ReadOnlyToMutable.Super| {
public abstract fun foo(p: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit|
}
}
@@ -0,0 +1,21 @@
public abstract interface SubclassFromGenericAndNot : R|kotlin/Any| {
public abstract interface Generic<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(key: R|T|): R|kotlin/Unit|
}
public abstract interface NonGeneric : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(p0: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Sub : R|test/SubclassFromGenericAndNot.NonGeneric|, R|test/SubclassFromGenericAndNot.Generic<kotlin/String>| {
public abstract fun foo(key: R|kotlin/String|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface SubstitutedClassParameter : R|kotlin/Any| {
public abstract interface Sub : R|test/SubstitutedClassParameter.Super<kotlin/String>| {
public abstract fun foo(t: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(t: R|T|): R|kotlin/Unit|
}
}
@@ -0,0 +1,21 @@
public abstract interface SubstitutedClassParameters : R|kotlin/Any| {
public abstract interface Sub : R|test/SubstitutedClassParameters.Super1<kotlin/String>|, R|test/SubstitutedClassParameters.Super2<kotlin/String>| {
public abstract fun foo(t: R|kotlin/String|): R|kotlin/Unit|
}
public abstract interface Super1<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(t: R|T|): R|kotlin/Unit|
}
public abstract interface Super2<E> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(t: R|E|): R|kotlin/Unit|
}
}
@@ -0,0 +1,14 @@
public abstract interface AddNotNullJavaSubtype : R|kotlin/Any| {
public abstract interface Sub : R|test/AddNotNullJavaSubtype.Super| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence?|
}
}
@@ -0,0 +1,14 @@
public abstract interface AddNotNullSameJavaType : R|kotlin/Any| {
public abstract interface Sub : R|test/AddNotNullSameJavaType.Super| {
public abstract fun foo(): R|kotlin/CharSequence|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence?|
}
}
@@ -0,0 +1,14 @@
public abstract interface AddNullabilityJavaSubtype : R|kotlin/Any| {
public abstract interface Sub : R|test/AddNullabilityJavaSubtype.Super| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence|
}
}
@@ -0,0 +1,14 @@
public abstract interface AddNullabilitySameGenericType1 : R|kotlin/Any| {
public abstract interface Sub : R|test/AddNullabilitySameGenericType1.Super| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
}
@@ -0,0 +1,14 @@
public abstract interface AddNullabilitySameGenericType2 : R|kotlin/Any| {
public abstract interface Sub : R|test/AddNullabilitySameGenericType2.Super| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
}
@@ -0,0 +1,14 @@
public abstract interface AddNullabilitySameJavaType : R|kotlin/Any| {
public abstract interface Sub : R|test/AddNullabilitySameJavaType.Super| {
public abstract fun foo(): R|kotlin/CharSequence|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence|
}
}
@@ -0,0 +1,14 @@
public abstract interface CantMakeImmutableInSubclass : R|kotlin/Any| {
public abstract interface Sub : R|test/CantMakeImmutableInSubclass.Super| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<kotlin/String>|
}
}
@@ -0,0 +1,19 @@
public abstract interface DeeplySubstitutedClassParameter : R|kotlin/Any| {
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter.Super<E>| {
public abstract fun foo(): R|E|
}
public abstract interface Sub : R|test/DeeplySubstitutedClassParameter.Middle<kotlin/String>| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|T|
}
}
@@ -0,0 +1,17 @@
public abstract interface DeeplySubstitutedClassParameter2 : R|kotlin/Any| {
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter2.Super<E>| {
}
public abstract interface Sub : R|test/DeeplySubstitutedClassParameter2.Middle<kotlin/String>| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|T|
}
}
@@ -0,0 +1,17 @@
public abstract interface HalfSubstitutedTypeParameters : R|kotlin/Any| {
public abstract interface Sub : R|test/HalfSubstitutedTypeParameters.Super| {
public abstract fun foo(): R|test/HalfSubstitutedTypeParameters.TrickyList<kotlin/Int, kotlin/String?>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String?>|
}
public abstract interface TrickyList<X, E> : R|kotlin/collections/MutableList<E>| {
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNullabilityGenericSubclassSimple : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNullabilityGenericSubclassSimple.Super| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<kotlin/String>|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNullabilityJavaSubtype : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNullabilityJavaSubtype.Super| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNullabilitySameGenericType : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNullabilitySameGenericType.Super| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritNullabilitySameJavaType : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritNullabilitySameJavaType.Super| {
public abstract fun foo(): R|kotlin/CharSequence|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritProjectionKind : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritProjectionKind.Super| {
public abstract fun foo(): R|kotlin/collections/MutableList<out kotlin/Number>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number>|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritReadOnlinessOfArgument : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritReadOnlinessOfArgument.Super| {
public abstract fun foo(): R|kotlin/collections/List<kotlin/collections/List<kotlin/String>>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/List<kotlin/collections/List<kotlin/String>>|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritReadOnlinessSameClass : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritReadOnlinessSameClass.Super| {
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|
}
}
@@ -0,0 +1,14 @@
public abstract interface InheritReadOnlinessSubclass : R|kotlin/Any| {
public abstract interface Sub : R|test/InheritReadOnlinessSubclass.Super| {
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/Collection<kotlin/String>|
}
}
@@ -0,0 +1,14 @@
public abstract interface SameProjectionKind : R|kotlin/Any| {
public abstract interface Sub : R|test/SameProjectionKind.Super| {
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number?>?|
}
public abstract interface Super : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number?>?|
}
}
@@ -0,0 +1,21 @@
public abstract interface SubclassFromGenericAndNot : R|kotlin/Any| {
public abstract interface Generic<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|T|
}
public abstract interface NonGeneric : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/String?|
}
public abstract interface Sub : R|test/SubclassFromGenericAndNot.NonGeneric|, R|test/SubclassFromGenericAndNot.Generic<kotlin/String>| {
public abstract fun foo(): R|kotlin/String|
}
}
@@ -0,0 +1,4 @@
public abstract interface SubclassOfCollection<E> : R|kotlin/collections/MutableCollection<E>| {
public abstract operator fun iterator(): R|kotlin/collections/MutableIterator<E>|
}
@@ -0,0 +1,7 @@
public abstract interface SubclassOfMapEntry<K, V> : R|kotlin/collections/MutableMap.MutableEntry<K, V>| {
public abstract fun setValue(value: R|V|): R|V|
public abstract val value: R|V|
public get(): R|V|
}
@@ -0,0 +1,14 @@
public abstract interface SubstitutedClassParameter : R|kotlin/Any| {
public abstract interface Sub : R|test/SubstitutedClassParameter.Super<kotlin/String>| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|T|
}
}
@@ -0,0 +1,21 @@
public abstract interface SubstitutedClassParameters : R|kotlin/Any| {
public abstract interface Sub : R|test/SubstitutedClassParameters.Super1<kotlin/String>|, R|test/SubstitutedClassParameters.Super2<kotlin/String>| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super1<T> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|T|
}
public abstract interface Super2<E> : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|E|
}
}
@@ -0,0 +1,21 @@
public abstract interface TwoSuperclassesConflictingProjectionKinds : R|kotlin/Any| {
public abstract interface Sub : R|test/TwoSuperclassesConflictingProjectionKinds.Super1|, R|test/TwoSuperclassesConflictingProjectionKinds.Super2| {
public abstract fun foo(): R|kotlin/collections/MutableCollection<kotlin/CharSequence>|
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<kotlin/CharSequence>|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/CharSequence>|
}
}
@@ -0,0 +1,21 @@
public abstract interface TwoSuperclassesInvariantAndCovariantInferMutability : R|kotlin/Any| {
public abstract interface Sub : R|test/TwoSuperclassesInvariantAndCovariantInferMutability.Super1|, R|test/TwoSuperclassesInvariantAndCovariantInferMutability.Super2| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/collections/MutableList<kotlin/String>>|
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/List<kotlin/collections/List<kotlin/String>>|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/collections/MutableList<kotlin/String>>|
}
}
@@ -0,0 +1,21 @@
public abstract interface TwoSuperclassesInvariantAndCovariantInferNullability : R|kotlin/Any| {
public abstract interface Sub : R|test/TwoSuperclassesInvariantAndCovariantInferNullability.Super1|, R|test/TwoSuperclassesInvariantAndCovariantInferNullability.Super2| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/List<kotlin/String?>|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
}
@@ -0,0 +1,21 @@
public abstract interface TwoSuperclassesMutableAndNot : R|kotlin/Any| {
public abstract interface Sub : R|test/TwoSuperclassesMutableAndNot.Super1|, R|test/TwoSuperclassesMutableAndNot.Super2| {
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/MutableCollection<kotlin/String>|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|
}
}
@@ -0,0 +1,21 @@
public abstract interface TwoSuperclassesReturnJavaSubtype : R|kotlin/Any| {
public abstract interface Sub : R|test/TwoSuperclassesReturnJavaSubtype.Super1|, R|test/TwoSuperclassesReturnJavaSubtype.Super2| {
public abstract fun foo(): R|kotlin/String|
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence?|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence|
}
}
@@ -0,0 +1,21 @@
public abstract interface TwoSuperclassesReturnSameJavaType : R|kotlin/Any| {
public abstract interface Sub : R|test/TwoSuperclassesReturnSameJavaType.Super1|, R|test/TwoSuperclassesReturnSameJavaType.Super2| {
public abstract fun foo(): R|kotlin/CharSequence|
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence?|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun dummy(): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/CharSequence|
}
}

Some files were not shown because too many files have changed in this diff Show More