mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +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 {
|
||||
public constructor AllBoundsInWhen()
|
||||
public open fun </*0*/ T : java.io.Serializable!> foo(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ArrayType {
|
||||
public constructor ArrayType()
|
||||
public open fun foo(): kotlin.Array<(out) kotlin.String!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithNewTypeParams</*0*/ T> {
|
||||
public constructor ConstructorWithNewTypeParams</*0*/ T>(/*0*/ first: kotlin.Any!)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithParentTypeParams</*0*/ T> {
|
||||
public constructor ConstructorWithParentTypeParams</*0*/ T>(/*0*/ first: T!)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ConstructorWithSeveralParams {
|
||||
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 {
|
||||
public constructor ConstructorWithoutParams()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class CustomProjectionKind {
|
||||
public constructor CustomProjectionKind()
|
||||
public open fun foo(): kotlin.(Mutable)List<kotlin.Number!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithFunctionTypes {
|
||||
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 {
|
||||
public constructor MethodWithGenerics()
|
||||
public open fun foo(/*0*/ a: kotlin.String!, /*1*/ b: kotlin.(Mutable)List<kotlin.(Mutable)Map.(Mutable)Entry<kotlin.String!, kotlin.String!>!>!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithMappedClasses {
|
||||
public constructor MethodWithMappedClasses()
|
||||
public open fun </*0*/ T> copy(/*0*/ dest: kotlin.(Mutable)List<in T!>!, /*1*/ src: kotlin.(Mutable)List<T!>!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithTypeParameters {
|
||||
public constructor MethodWithTypeParameters()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable!> foo(/*0*/ a: A!, /*1*/ b: (kotlin.MutableList<out B!>..kotlin.List<B!>?), /*2*/ c: kotlin.(Mutable)List<in kotlin.String!>!): kotlin.Unit where B : kotlin.(Mutable)List<kotlin.Cloneable!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithVararg {
|
||||
public constructor MethodWithVararg()
|
||||
public open fun foo(/*0*/ vararg s: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class PropertyArrayTypes</*0*/ T> {
|
||||
public final var array: kotlin.Array<(out) kotlin.String!>!
|
||||
public final var arrayOfArrays: kotlin.Array<(out) kotlin.Array<(out) kotlin.String!>!>!
|
||||
public final var genericArray: kotlin.Array<(out) T!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public open class PropertyComplexTypes</*0*/ T> {
|
||||
public final var listDefinedGeneric: java.util.ArrayList<kotlin.String!>!
|
||||
public final var listGeneric: java.util.ArrayList<T!>!
|
||||
public final var listOfGenericList: java.util.ArrayList<java.util.ArrayList<T!>!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,4 +4,4 @@ public open class PropertySimpleType {
|
||||
public constructor PropertySimpleType()
|
||||
public final var fieldOne: kotlin.String!
|
||||
public final var fieldTwo: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 {
|
||||
public constructor AddingNullability()
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ConflictingProjectionKind {
|
||||
public constructor ConflictingProjectionKind()
|
||||
public open fun foo(/*0*/ p0: kotlin.(Mutable)List<kotlin.Number!>!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ExplicitFieldGettersAndSetters {
|
||||
public constructor ExplicitFieldGettersAndSetters()
|
||||
public final var foo: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ExtraUpperBound {
|
||||
public constructor ExtraUpperBound()
|
||||
public open fun </*0*/ A : java.lang.Runnable!> foo(): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MissingUpperBound {
|
||||
public constructor MissingUpperBound()
|
||||
public open fun </*0*/ A : java.lang.Runnable!> foo(): kotlin.String! where A : kotlin.Cloneable!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class NoFieldTypeRef {
|
||||
public constructor NoFieldTypeRef()
|
||||
public final var foo: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class NotVarargReplacedWithVararg {
|
||||
public constructor NotVarargReplacedWithVararg()
|
||||
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class RedundantProjectionKind {
|
||||
public constructor RedundantProjectionKind()
|
||||
public open fun foo(/*0*/ list: kotlin.(Mutable)List<kotlin.Number!>!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class ReturnTypeMissing {
|
||||
public constructor ReturnTypeMissing()
|
||||
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class SyntaxError {
|
||||
public constructor SyntaxError()
|
||||
public open fun foo(): kotlin.Int!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class SyntaxErrorInFieldAnnotation {
|
||||
public constructor SyntaxErrorInFieldAnnotation()
|
||||
public final var foo: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class VarargReplacedWithNotVararg {
|
||||
public constructor VarargReplacedWithNotVararg()
|
||||
public open fun foo(/*0*/ vararg p0: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongFieldInitializer {
|
||||
public constructor WrongFieldInitializer()
|
||||
public final var foo: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,4 +4,4 @@ public open class WrongFieldMutability {
|
||||
public constructor WrongFieldMutability()
|
||||
public final val fooFinal: kotlin.String! = "Test"
|
||||
public final var fooNotFinal: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongFieldName {
|
||||
public constructor WrongFieldName()
|
||||
public final var foo: kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongMethodName {
|
||||
public constructor WrongMethodName()
|
||||
public open fun foo(): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongProjectionKind {
|
||||
public constructor WrongProjectionKind()
|
||||
public open fun copy(/*0*/ a: kotlin.Array<(out) kotlin.Number!>!, /*1*/ b: kotlin.Array<(out) kotlin.Number!>!): kotlin.(Mutable)List<kotlin.Number!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongReturnTypeStructure {
|
||||
public constructor WrongReturnTypeStructure()
|
||||
public open fun foo(/*0*/ a: kotlin.String!, /*1*/ b: kotlin.(Mutable)List<kotlin.(Mutable)Map.(Mutable)Entry<kotlin.String!, kotlin.String!>!>!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeName1 {
|
||||
public constructor WrongTypeName1()
|
||||
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeName2 {
|
||||
public constructor WrongTypeName2()
|
||||
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeName3 {
|
||||
public constructor WrongTypeName3()
|
||||
public open fun foo(/*0*/ p0: kotlin.String!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeParameterBoundStructure1 {
|
||||
public constructor WrongTypeParameterBoundStructure1()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable!> foo(/*0*/ a: A!, /*1*/ b: (kotlin.MutableList<out B!>..kotlin.List<B!>?)): kotlin.Unit where B : kotlin.(Mutable)List<kotlin.Cloneable!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeParameterBoundStructure2 {
|
||||
public constructor WrongTypeParameterBoundStructure2()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable!> foo(/*0*/ a: A!, /*1*/ b: (kotlin.MutableList<out B!>..kotlin.List<B!>?)): kotlin.Unit where B : kotlin.(Mutable)List<kotlin.Cloneable!>!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongTypeParametersCount {
|
||||
public constructor WrongTypeParametersCount()
|
||||
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0: A!, /*1*/ p1: (kotlin.MutableList<out B!>..kotlin.List<B!>?)): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongValueParameterStructure1 {
|
||||
public constructor WrongValueParameterStructure1()
|
||||
public open fun foo(/*0*/ a: kotlin.String!, /*1*/ b: kotlin.(Mutable)List<kotlin.(Mutable)Map.(Mutable)Entry<kotlin.String!, kotlin.String!>!>!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongValueParameterStructure2 {
|
||||
public constructor WrongValueParameterStructure2()
|
||||
public open fun foo(/*0*/ a: kotlin.String!, /*1*/ b: kotlin.(Mutable)List<kotlin.(Mutable)Map.(Mutable)Entry<kotlin.String!, kotlin.String!>!>!): kotlin.String!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class WrongValueParametersCount {
|
||||
public constructor WrongValueParametersCount()
|
||||
public open fun foo(): kotlin.Int!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,4 +19,4 @@ public trait PropagateTypeArgumentNullable {
|
||||
public abstract fun outR(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
public abstract fun outS(/*0*/ p: kotlin.(Mutable)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.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait ChangeProjectionKind2 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<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.(Mutable)List<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*/ org.jetbrains.annotations.NotNull() 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.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnliness {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.(Mutable)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<(out) 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<(out) 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<(out) 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.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait NotNullToNullable {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ org.jetbrains.annotations.NotNull() 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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,4 +12,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.(Mutable)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
|
||||
org.jetbrains.annotations.NotNull() public abstract fun foo(): kotlin.CharSequence!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilitySameGenericType1 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilitySameGenericType2 {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait AddNullabilitySameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
org.jetbrains.annotations.NotNull() public abstract fun foo(): kotlin.CharSequence!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait CantMakeImmutableInSubclass {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)Collection<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.(Mutable)Collection<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilityJavaSubtype {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
org.jetbrains.annotations.NotNull() public abstract fun foo(): kotlin.CharSequence!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilitySameGenericType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritNullabilitySameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
org.jetbrains.annotations.NotNull() public abstract fun foo(): kotlin.CharSequence!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritProjectionKind {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.Number!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnlinessOfArgument {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnlinessSameClass {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@ public trait InheritReadOnlinessSubclass {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)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!>..kotlin.Collection<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.(Mutable)Collection<kotlin.CharSequence!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesInvariantAndCovariantInferMutability {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesInvariantAndCovariantInferNullability {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesMutableAndNot {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesReturnJavaSubtype {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
org.jetbrains.annotations.NotNull() public abstract fun foo(): kotlin.CharSequence!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ public trait TwoSuperclassesReturnSameJavaType {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
org.jetbrains.annotations.NotNull() 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