mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
This commit is contained in:
@@ -3,4 +3,4 @@ package test
|
||||
public open class AllBoundsInWhen {
|
||||
/*primary*/ public constructor AllBoundsInWhen()
|
||||
public open fun </*0*/ T : java.io.Serializable> foo(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ArrayType {
|
||||
/*primary*/ public constructor ArrayType()
|
||||
public open fun foo(): kotlin.Array<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithNewTypeParams</*0*/ T> {
|
||||
/*primary*/ public constructor ConstructorWithNewTypeParams</*0*/ T>(/*0*/ first: kotlin.Any)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithParentTypeParams</*0*/ T> {
|
||||
/*primary*/ public constructor ConstructorWithParentTypeParams</*0*/ T>(/*0*/ first: T)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithSeveralParams {
|
||||
/*primary*/ public constructor ConstructorWithSeveralParams(/*0*/ integer: kotlin.Int, /*1*/ intField: kotlin.Int, /*2*/ collection: java.util.ArrayList<kotlin.String>)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithoutParams {
|
||||
/*primary*/ public constructor ConstructorWithoutParams()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class CustomProjectionKind {
|
||||
/*primary*/ public constructor CustomProjectionKind()
|
||||
public open fun foo(): kotlin.MutableList<out kotlin.Number>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithFunctionTypes {
|
||||
/*primary*/ public constructor MethodWithFunctionTypes()
|
||||
public open fun foo(/*0*/ f: (kotlin.String?) -> kotlin.String): (kotlin.String.() -> kotlin.String?)?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithGenerics {
|
||||
/*primary*/ public constructor MethodWithGenerics()
|
||||
public open fun foo(/*0*/ a: kotlin.String, /*1*/ b: kotlin.List<kotlin.Map.Entry<kotlin.String?, kotlin.String>?>): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithMappedClasses {
|
||||
/*primary*/ public constructor MethodWithMappedClasses()
|
||||
public open fun </*0*/ T> copy(/*0*/ dest: kotlin.MutableList<in T>, /*1*/ src: kotlin.List<T>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithTypeParameters {
|
||||
/*primary*/ public constructor MethodWithTypeParameters()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable> foo(/*0*/ a: A, /*1*/ b: kotlin.List<B>, /*2*/ c: kotlin.MutableList<in kotlin.String?>): kotlin.Unit where B : kotlin.List<kotlin.Cloneable>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithVararg {
|
||||
/*primary*/ public constructor MethodWithVararg()
|
||||
public open fun foo(/*0*/ vararg s: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public open class PropertyArrayTypes</*0*/ T> {
|
||||
public final var genericArray: kotlin.Array<T>
|
||||
public final fun <get-genericArray>(): kotlin.Array<T>
|
||||
public final fun <set-genericArray>(/*0*/ <set-?>: kotlin.Array<T>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,4 +14,4 @@ public open class PropertyComplexTypes</*0*/ T> {
|
||||
public final var listOfGenericList: java.util.ArrayList<java.util.ArrayList<T>>
|
||||
public final fun <get-listOfGenericList>(): java.util.ArrayList<java.util.ArrayList<T>>
|
||||
public final fun <set-listOfGenericList>(/*0*/ <set-?>: java.util.ArrayList<java.util.ArrayList<T>>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,4 +8,4 @@ public open class PropertySimpleType {
|
||||
public final var fieldTwo: kotlin.String?
|
||||
public final fun <get-fieldTwo>(): kotlin.String?
|
||||
public final fun <set-fieldTwo>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public final class StarProjection {
|
||||
|
||||
public trait MyClass</*0*/ T : kotlin.CharSequence?> {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class AddingNullability {
|
||||
/*primary*/ public constructor AddingNullability()
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ConflictingProjectionKind {
|
||||
/*primary*/ public constructor ConflictingProjectionKind()
|
||||
public open fun foo(/*0*/ p0: kotlin.List<kotlin.Number>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class ExplicitFieldGettersAndSetters {
|
||||
public final var foo: kotlin.String?
|
||||
public final fun <get-foo>(): kotlin.String?
|
||||
public final fun <set-foo>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ExtraUpperBound {
|
||||
/*primary*/ public constructor ExtraUpperBound()
|
||||
public open fun </*0*/ A : java.lang.Runnable?> foo(): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MissingUpperBound {
|
||||
/*primary*/ public constructor MissingUpperBound()
|
||||
public open fun </*0*/ A : java.lang.Runnable?> foo(): kotlin.String? where A : kotlin.Cloneable?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class NoFieldTypeRef {
|
||||
public final var foo: kotlin.String?
|
||||
public final fun <get-foo>(): kotlin.String?
|
||||
public final fun <set-foo>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class NotVarargReplacedWithVararg {
|
||||
/*primary*/ public constructor NotVarargReplacedWithVararg()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class RedundantProjectionKind {
|
||||
/*primary*/ public constructor RedundantProjectionKind()
|
||||
public open fun foo(/*0*/ list: kotlin.List<kotlin.Number>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ReturnTypeMissing {
|
||||
/*primary*/ public constructor ReturnTypeMissing()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class SyntaxError {
|
||||
/*primary*/ public constructor SyntaxError()
|
||||
public open fun foo(): kotlin.Int?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class SyntaxErrorInFieldAnnotation {
|
||||
public final var foo: kotlin.String?
|
||||
public final fun <get-foo>(): kotlin.String?
|
||||
public final fun <set-foo>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class VarargReplacedWithNotVararg {
|
||||
/*primary*/ public constructor VarargReplacedWithNotVararg()
|
||||
public open fun foo(/*0*/ vararg p0: kotlin.String? /*kotlin.Array<kotlin.String?>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class WrongFieldInitializer {
|
||||
public final var foo: kotlin.String?
|
||||
public final fun <get-foo>(): kotlin.String?
|
||||
public final fun <set-foo>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,4 +7,4 @@ public open class WrongFieldMutability {
|
||||
public final var fooNotFinal: kotlin.String?
|
||||
public final fun <get-fooNotFinal>(): kotlin.String?
|
||||
public final fun <set-fooNotFinal>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class WrongFieldName {
|
||||
public final var foo: kotlin.String?
|
||||
public final fun <get-foo>(): kotlin.String?
|
||||
public final fun <set-foo>(/*0*/ <set-?>: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongMethodName {
|
||||
/*primary*/ public constructor WrongMethodName()
|
||||
public open fun foo(): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongProjectionKind {
|
||||
/*primary*/ public constructor WrongProjectionKind()
|
||||
public open fun copy(/*0*/ p0: kotlin.Array<out kotlin.Number>?, /*1*/ p1: kotlin.Array<out kotlin.Number>?): kotlin.MutableList<kotlin.Number>?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongReturnTypeStructure {
|
||||
/*primary*/ public constructor WrongReturnTypeStructure()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.List<kotlin.Map.Entry<kotlin.String, kotlin.String>>?): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeName1 {
|
||||
/*primary*/ public constructor WrongTypeName1()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeName2 {
|
||||
/*primary*/ public constructor WrongTypeName2()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeName3 {
|
||||
/*primary*/ public constructor WrongTypeName3()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeParameterBoundStructure1 {
|
||||
/*primary*/ public constructor WrongTypeParameterBoundStructure1()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable?> foo(/*0*/ p0: A?, /*1*/ p1: kotlin.List<B>?): kotlin.Unit where B : kotlin.List<kotlin.Cloneable>?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeParameterBoundStructure2 {
|
||||
/*primary*/ public constructor WrongTypeParameterBoundStructure2()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable?> foo(/*0*/ p0: A?, /*1*/ p1: kotlin.List<B>?): kotlin.Unit where B : kotlin.List<kotlin.Cloneable>?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeParametersCount {
|
||||
/*primary*/ public constructor WrongTypeParametersCount()
|
||||
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0: A?, /*1*/ p1: kotlin.List<B>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongValueParameterStructure1 {
|
||||
/*primary*/ public constructor WrongValueParameterStructure1()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.List<kotlin.Map.Entry<kotlin.String, kotlin.String>>?): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongValueParameterStructure2 {
|
||||
/*primary*/ public constructor WrongValueParameterStructure2()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.List<kotlin.Map.Entry<kotlin.String, kotlin.String>>?): kotlin.String?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongValueParametersCount {
|
||||
/*primary*/ public constructor WrongValueParametersCount()
|
||||
public open fun foo(): kotlin.Int?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,4 +19,4 @@ public trait PropagateTypeArgumentNullable {
|
||||
public abstract fun outR(): kotlin.List<kotlin.String?>
|
||||
public abstract fun outS(/*0*/ p: kotlin.List<kotlin.String?>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait ChangeProjectionKind1 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait ChangeProjectionKind2 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait DeeplySubstitutedClassParameter {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait DeeplySubstitutedClassParameter2 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritMutability {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNotVararg {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNotVarargInteger {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.Int>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNotVarargNotNull {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.Array<out kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNotVarargPrimitive {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.IntArray?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullability {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritProjectionKind {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnliness {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.List<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritVararg {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.String? /*kotlin.Array<kotlin.String?>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritVarargInteger {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.Int? /*kotlin.Array<kotlin.Int?>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritVarargNotNull {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritVarargPrimitive {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait Kt3302 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun put(/*0*/ key: K, /*1*/ value: V): V?
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait MutableToReadOnly {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait NotNullToNullable {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait NullableToNotNull {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait NullableToNotNullKotlinSignature {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait OverrideWithErasedParameter {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait ReadOnlyToMutable {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.List<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait SubclassFromGenericAndNot {
|
||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*2*/ fun foo(/*0*/ key: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait SubstitutedClassParameter {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait SubstitutedClassParameters {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ t: E): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNotNullJavaSubtype {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence?
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNotNullSameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence?
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilityJavaSubtype {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilitySameGenericType1 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilitySameGenericType2 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilitySameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait CantMakeImmutableInSubclass {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait DeeplySubstitutedClassParameter {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait DeeplySubstitutedClassParameter2 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,4 +35,4 @@ public trait HalfSubstitutedTypeParameters {
|
||||
public abstract override /*1*/ /*fake_override*/ fun size(): kotlin.Int
|
||||
public abstract override /*1*/ /*fake_override*/ fun subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.MutableList<E>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilityGenericSubclassSimple {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilityJavaSubtype {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilitySameGenericType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilitySameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritProjectionKind {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.Number>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnlinessOfArgument {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.List<kotlin.List<kotlin.String>>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnlinessSameClass {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.List<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnlinessSubclass {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.Collection<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait SameProjectionKind {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.Number?>?
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait SubclassFromGenericAndNot {
|
||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*2*/ fun foo(): kotlin.String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,4 +12,4 @@ public trait SubclassOfCollection</*0*/ E> : kotlin.MutableCollection<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun removeAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun retainAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun size(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,4 +4,4 @@ public trait SubclassOfMapEntry</*0*/ K, /*1*/ V> : kotlin.MutableMap.MutableEnt
|
||||
public abstract override /*1*/ /*fake_override*/ fun getKey(): K
|
||||
public abstract override /*1*/ /*fake_override*/ fun getValue(): V
|
||||
public abstract override /*1*/ fun setValue(/*0*/ value: V): V
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait SubstitutedClassParameter {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait SubstitutedClassParameters {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): E
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesConflictingProjectionKinds {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.CharSequence>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesInvariantAndCovariantInferMutability {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.MutableList<kotlin.String>>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesInvariantAndCovariantInferNullability {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesMutableAndNot {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.List<kotlin.String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesReturnJavaSubtype {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesReturnSameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user