[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 final class ArrayTypeVariance : R|kotlin/Any| {
public final fun toArray(p0: R|kotlin/Array<out kotlin/Any>?|): R|kotlin/Array<kotlin/Any>?|
public constructor(): R|test/ArrayTypeVariance|
}
@@ -0,0 +1,4 @@
public abstract class ClassDoesNotOverrideMethod : R|java/util/Date| {
public constructor(): R|test/ClassDoesNotOverrideMethod|
}
@@ -0,0 +1,7 @@
public abstract interface TheTrait : R|kotlin/Any| {
public final companion object Companion : R|kotlin/Any| {
private constructor(): R|test/TheTrait.Companion|
}
}
@@ -0,0 +1,10 @@
public final class ClassWithConstVal : R|kotlin/Any| {
public final val f: R|kotlin/Int|
public get(): R|kotlin/Int|
public final val f2: R|kotlin/Int|
public get(): R|kotlin/Int|
public constructor(): R|test/ClassWithConstVal|
}
@@ -0,0 +1,4 @@
public final class ClassWithTypeP<P> : R|kotlin/Any| {
public constructor<P>(): R|test/ClassWithTypeP<P>|
}
@@ -0,0 +1,4 @@
public abstract class ClassWithTypePExtendsIterableP<P> : R|kotlin/collections/MutableIterable<P>| {
public constructor<P>(): R|test/ClassWithTypePExtendsIterableP<P>|
}
@@ -0,0 +1,4 @@
public final class ClassWithTypePP<P, Q : R|P|> : R|kotlin/Any| {
public constructor<P, Q : R|P|>(): R|test/ClassWithTypePP<P, Q>|
}
@@ -0,0 +1,4 @@
public open class ClassWithTypePRefNext<R : R|kotlin/collections/Iterable<P>?|, P> : R|kotlin/Any| {
public constructor<R : R|kotlin/collections/Iterable<P>?|, P>(): R|test/ClassWithTypePRefNext<R, P>|
}
@@ -0,0 +1,4 @@
public final class ClassWithTypePRefSelf<P : R|kotlin/Enum<P>|> : R|kotlin/Any| {
public constructor<P : R|kotlin/Enum<P>|>(): R|test/ClassWithTypePRefSelf<P>|
}
@@ -0,0 +1,4 @@
public final class ClassWithTypePRefSelfAndClass<P : R|test/ClassWithTypePRefSelfAndClass<P>?|> : R|kotlin/Any| {
public constructor<P : R|test/ClassWithTypePRefSelfAndClass<P>?|>(): R|test/ClassWithTypePRefSelfAndClass<P>|
}
@@ -0,0 +1,8 @@
public final class FieldAsVar : R|kotlin/Any| {
public final var f: R|kotlin/Int|
public get(): R|kotlin/Int|
public set(value: R|kotlin/Int|): R|kotlin/Unit|
public constructor(): R|test/FieldAsVar|
}
@@ -0,0 +1,8 @@
public open class FieldOfArrayType : R|kotlin/Any| {
public final var files: R|kotlin/Array<java/io/File>?|
public get(): R|kotlin/Array<java/io/File>?|
public set(value: R|kotlin/Array<java/io/File>?|): R|kotlin/Unit|
public constructor(): R|test/FieldOfArrayType|
}
@@ -0,0 +1,7 @@
public final class FinalFieldAsVal : R|kotlin/Any| {
public final val f: R|kotlin/Int|
public get(): R|kotlin/Int|
public constructor(): R|test/FinalFieldAsVal|
}
@@ -0,0 +1,22 @@
public final class InheritMethodsDifferentReturnTypes : R|kotlin/Any| {
public constructor(): R|test/InheritMethodsDifferentReturnTypes|
public abstract interface Sub : R|test/InheritMethodsDifferentReturnTypes.Super1|, R|test/InheritMethodsDifferentReturnTypes.Super2| {
}
public abstract interface Super1 : R|kotlin/Any| {
public abstract fun bar(): R|kotlin/String?|
public abstract fun foo(): R|kotlin/CharSequence?|
}
public abstract interface Super2 : R|kotlin/Any| {
public abstract fun bar(): R|kotlin/CharSequence?|
public abstract fun foo(): R|kotlin/String?|
}
}
@@ -0,0 +1,22 @@
public final class InheritMethodsDifferentReturnTypesGeneric : R|kotlin/Any| {
public constructor(): R|test/InheritMethodsDifferentReturnTypesGeneric|
public abstract interface Sub : R|test/InheritMethodsDifferentReturnTypesGeneric.Super1<kotlin/String, kotlin/CharSequence>|, R|test/InheritMethodsDifferentReturnTypesGeneric.Super2<kotlin/CharSequence, kotlin/String>| {
}
public abstract interface Super1<F, B> : R|kotlin/Any| {
public abstract fun bar(): R|B?|
public abstract fun foo(): R|F?|
}
public abstract interface Super2<FF, BB> : R|kotlin/Any| {
public abstract fun bar(): R|BB?|
public abstract fun foo(): R|FF?|
}
}
@@ -0,0 +1,10 @@
public open class InnerClass : R|kotlin/Any| {
public constructor(): R|test/InnerClass|
public open inner class Inner : R|kotlin/Any| {
public test/InnerClass.constructor(): R|test/InnerClass.Inner|
}
}
@@ -0,0 +1,6 @@
public open class MethodTypePOneUpperBound : R|kotlin/Any| {
public open fun <T : R|kotlin/Cloneable?|> bar(): R|kotlin/Unit|
public constructor(): R|test/MethodTypePOneUpperBound|
}
@@ -0,0 +1,6 @@
public open class MethodTypePTwoUpperBounds : R|kotlin/Any| {
public open fun <T : R|kotlin/Cloneable?|, R|java/lang/Runnable?|> foo(): R|kotlin/Unit|
public constructor(): R|test/MethodTypePTwoUpperBounds|
}
@@ -0,0 +1,6 @@
public final class MethodWithTypeP : R|kotlin/Any| {
public final fun <P> f(): R|kotlin/Unit|
public constructor(): R|test/MethodWithTypeP|
}
@@ -0,0 +1,6 @@
public final class MethodWithTypePP : R|kotlin/Any| {
public final fun <P, Q : R|P|> f(): R|kotlin/Unit|
public constructor(): R|test/MethodWithTypePP|
}
@@ -0,0 +1,6 @@
public open class MethodWithTypePRefClassP<P> : R|kotlin/Any| {
public final fun <Q : R|P|> f(): R|kotlin/Unit|
public constructor<P>(): R|test/MethodWithTypePRefClassP<P>|
}
@@ -0,0 +1,6 @@
public final class MethosWithPRefTP : R|kotlin/Any| {
public final fun <P> f(p0: R|P?|): R|kotlin/Unit|
public constructor(): R|test/MethosWithPRefTP|
}
@@ -0,0 +1,4 @@
public open class MyException : R|kotlin/Any| {
public constructor(p0: R|kotlin/String?|, p1: R|kotlin/Throwable?|): R|test/MyException|
}
@@ -0,0 +1,10 @@
public open class NestedClass : R|kotlin/Any| {
public constructor(): R|test/NestedClass|
public open class Nested : R|kotlin/Any| {
public constructor(): R|test/NestedClass.Nested|
}
}
@@ -0,0 +1,6 @@
public abstract interface RemoveRedundantProjectionKind : R|kotlin/Any| {
public abstract fun f(p0: R|kotlin/Comparable<kotlin/CharSequence?>?|): R|kotlin/Unit|
public abstract fun f(p0: R|kotlin/collections/Collection<kotlin/CharSequence?>?|): R|kotlin/Unit|
}
@@ -0,0 +1,4 @@
public final class Simple : R|kotlin/Any| {
public constructor(): R|test/Simple|
}
@@ -0,0 +1,12 @@
public final class TwoFields : R|kotlin/Any| {
public final var a: R|kotlin/Int|
public get(): R|kotlin/Int|
public set(value: R|kotlin/Int|): R|kotlin/Unit|
public final var b: R|kotlin/Short|
public get(): R|kotlin/Short|
public set(value: R|kotlin/Short|): R|kotlin/Unit|
public constructor(): R|test/TwoFields|
}
@@ -0,0 +1,10 @@
public final class UnboundWildcard : R|kotlin/Any| {
public final fun foo(): R|test/UnboundWildcard.MyClass<*>?|
public constructor(): R|test/UnboundWildcard|
public abstract interface MyClass<T : R|kotlin/CharSequence?|> : R|kotlin/Any| {
}
}
@@ -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?|
}
}

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