mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +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 final class ArrayTypeVariance {
|
||||
/*primary*/ public constructor ArrayTypeVariance()
|
||||
public final fun toArray(/*0*/ p0: kotlin.Array<out kotlin.Any>?): kotlin.Array<kotlin.Any>?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,4 +32,4 @@ public abstract class ClassDoesNotOverrideMethod : java.util.Date {
|
||||
kotlin.deprecated(value = "Deprecated in Java": kotlin.String) public open override /*1*/ /*fake_override*/ fun toGMTString(): kotlin.String!
|
||||
kotlin.deprecated(value = "Deprecated in Java": kotlin.String) public open override /*1*/ /*fake_override*/ fun toLocaleString(): kotlin.String!
|
||||
invisible_fake open override /*1*/ /*fake_override*/ fun writeObject(/*0*/ p0: java.io.ObjectOutputStream!): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ internal trait TheTrait {
|
||||
internal class object <class-object-for-TheTrait> {
|
||||
/*primary*/ private constructor <class-object-for-TheTrait>()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public final class ClassWithConstVal {
|
||||
public final fun <get-f>(): kotlin.Int
|
||||
public final val f2: kotlin.Int = 1
|
||||
public final fun <get-f2>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public final class ClassWithTypeP</*0*/ P> {
|
||||
/*primary*/ public constructor ClassWithTypeP</*0*/ P>()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public abstract class ClassWithTypePExtendsIterableP</*0*/ P> : kotlin.MutableIterable<P> {
|
||||
/*primary*/ public constructor ClassWithTypePExtendsIterableP</*0*/ P>()
|
||||
public abstract override /*1*/ /*fake_override*/ fun iterator(): kotlin.MutableIterator<P>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public final class ClassWithTypePP</*0*/ P, /*1*/ Q : P> {
|
||||
/*primary*/ public constructor ClassWithTypePP</*0*/ P, /*1*/ Q : P>()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class ClassWithTypePRefNext</*0*/ R : kotlin.Iterable<P>?, /*1*/ P> {
|
||||
/*primary*/ public constructor ClassWithTypePRefNext</*0*/ R : kotlin.Iterable<P>?, /*1*/ P>()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public final class ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P>?> {
|
||||
/*primary*/ public constructor ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P>?>()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public final class ClassWithTypePRefSelfAndClass</*0*/ P : test.ClassWithTypePRefSelfAndClass<P>?> {
|
||||
/*primary*/ public constructor ClassWithTypePRefSelfAndClass</*0*/ P : test.ClassWithTypePRefSelfAndClass<P>?>()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public final class FieldAsVar {
|
||||
public final var f: kotlin.Int
|
||||
public final fun <get-f>(): kotlin.Int
|
||||
public final fun <set-f>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ public open class FieldOfArrayType {
|
||||
public final var files: kotlin.Array<java.io.File>?
|
||||
public final fun <get-files>(): kotlin.Array<java.io.File>?
|
||||
public final fun <set-files>(/*0*/ <set-?>: kotlin.Array<java.io.File>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,4 +4,4 @@ public final class FinalFieldAsVal {
|
||||
/*primary*/ public constructor FinalFieldAsVal()
|
||||
public final val f: kotlin.Int = 1
|
||||
public final fun <get-f>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,4 +17,4 @@ public final class InheritMethodsDifferentReturnTypes {
|
||||
public abstract fun bar(): kotlin.CharSequence?
|
||||
public abstract fun foo(): kotlin.String?
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,4 +17,4 @@ public final class InheritMethodsDifferentReturnTypesGeneric {
|
||||
public abstract fun bar(): BB?
|
||||
public abstract fun foo(): FF?
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public open class InnerClass {
|
||||
public open inner class Inner {
|
||||
/*primary*/ public constructor Inner()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodTypePOneUpperBound {
|
||||
/*primary*/ public constructor MethodTypePOneUpperBound()
|
||||
public open fun </*0*/ T : kotlin.Cloneable?> bar(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodTypePTwoUpperBounds {
|
||||
/*primary*/ public constructor MethodTypePTwoUpperBounds()
|
||||
public open fun </*0*/ T : kotlin.Cloneable?> foo(): kotlin.Unit where T : java.lang.Runnable?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public final class MethodWithTypeP {
|
||||
/*primary*/ public constructor MethodWithTypeP()
|
||||
public final fun </*0*/ P> f(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public final class MethodWithTypePP {
|
||||
/*primary*/ public constructor MethodWithTypePP()
|
||||
public final fun </*0*/ P, /*1*/ Q : P> f(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public open class MethodWithTypePRefClassP</*0*/ P> {
|
||||
/*primary*/ public constructor MethodWithTypePRefClassP</*0*/ P>()
|
||||
public final fun </*0*/ Q : P> f(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public final class MethosWithPRefTP {
|
||||
/*primary*/ public constructor MethosWithPRefTP()
|
||||
public final fun </*0*/ P> f(/*0*/ p0: P?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public open class MyException {
|
||||
/*primary*/ public constructor MyException(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.Throwable?)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public open class NestedClass {
|
||||
public open class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ package test
|
||||
public trait RemoveRedundantProjectionKind {
|
||||
public abstract fun f(/*0*/ p0: kotlin.Collection<kotlin.CharSequence?>?): kotlin.Unit
|
||||
public abstract fun f(/*0*/ p0: kotlin.Comparable<kotlin.CharSequence?>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ package test
|
||||
|
||||
public final class Simple {
|
||||
/*primary*/ public constructor Simple()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,4 +8,4 @@ public final class TwoFields {
|
||||
public final var b: kotlin.Short
|
||||
public final fun <get-b>(): kotlin.Short
|
||||
public final fun <set-b>(/*0*/ <set-?>: kotlin.Short): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ public final class UnboundWildcard {
|
||||
|
||||
public trait MyClass</*0*/ T : kotlin.CharSequence?> {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,4 @@ internal final class Some {
|
||||
/*primary*/ public constructor TestAnnotation()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,4 +37,4 @@ internal final enum class Test : kotlin.Enum<test.Test> {
|
||||
// Static members
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.Test
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.Test>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
internal fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user