Massive test data update for compiledJava
This commit is contained in:
@@ -26,5 +26,5 @@ public open class InnerOfGeneric {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public final /*synthesized*/ fun </*0*/ E> S(/*0*/ function: () -> kotlin.MutableIterator<E!>!): test.InnerOfGeneric.S<E>
|
public final /*synthesized*/ fun </*0*/ E> S(/*0*/ function: () -> kotlin.(Mutable)Iterator<E!>!): test.InnerOfGeneric.S<E>
|
||||||
}
|
}
|
||||||
@@ -10,5 +10,5 @@ public trait RawTypeWithUpperBound {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Bar(/*0*/ function: (test.RawTypeWithUpperBound.Foo<out kotlin.CharSequence!>!) -> kotlin.Unit): test.RawTypeWithUpperBound.Bar
|
public final /*synthesized*/ fun Bar(/*0*/ function: (test.RawTypeWithUpperBound.Foo<out kotlin.CharSequence!>!) -> kotlin.Unit): test.RawTypeWithUpperBound.Bar
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public trait RawUpperBound</*0*/ T : test.RawUpperBound<out kotlin.Any?>?> {
|
public trait RawUpperBound</*0*/ T : test.RawUpperBound<out kotlin.Any?>!> {
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public trait RecursiveRawUpperBound</*0*/ T : test.RecursiveRawUpperBound<out kotlin.Any?>?> {
|
public trait RecursiveRawUpperBound</*0*/ T : test.RecursiveRawUpperBound<out kotlin.Any?>!> {
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public trait RecursiveWildcardUpperBound</*0*/ T : test.RecursiveWildcardUpperBound<out kotlin.Any?>?> {
|
public trait RecursiveWildcardUpperBound</*0*/ T : test.RecursiveWildcardUpperBound<out kotlin.Any?>!> {
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public open class ConstructorWithNewTypeParams</*0*/ T> {
|
public open class ConstructorWithNewTypeParams</*0*/ T> {
|
||||||
public constructor ConstructorWithNewTypeParams</*0*/ T>(/*0*/ first: kotlin.Any)
|
public constructor ConstructorWithNewTypeParams</*0*/ T>(/*0*/ first: kotlin.Any!)
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public open class ConstructorWithParentTypeParams</*0*/ T> {
|
public open class ConstructorWithParentTypeParams</*0*/ T> {
|
||||||
public constructor ConstructorWithParentTypeParams</*0*/ T>(/*0*/ first: T)
|
public constructor ConstructorWithParentTypeParams</*0*/ T>(/*0*/ first: T!)
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public open class ConstructorWithSeveralParams {
|
public open class ConstructorWithSeveralParams {
|
||||||
public constructor ConstructorWithSeveralParams(/*0*/ integer: kotlin.Int, /*1*/ intField: kotlin.Int, /*2*/ collection: java.util.ArrayList<kotlin.String>)
|
public constructor ConstructorWithSeveralParams(/*0*/ integer: kotlin.Int!, /*1*/ intField: kotlin.Int, /*2*/ collection: java.util.ArrayList<kotlin.String!>!)
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class CustomProjectionKind {
|
public open class CustomProjectionKind {
|
||||||
public constructor CustomProjectionKind()
|
public constructor CustomProjectionKind()
|
||||||
public open fun foo(): kotlin.MutableList<out kotlin.Number>
|
public open fun foo(): kotlin.(Mutable)List<kotlin.Number!>!
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class MethodWithFunctionTypes {
|
public open class MethodWithFunctionTypes {
|
||||||
public constructor MethodWithFunctionTypes()
|
public constructor MethodWithFunctionTypes()
|
||||||
public open fun foo(/*0*/ f: (kotlin.String?) -> kotlin.String): (kotlin.String.() -> kotlin.String?)?
|
public open fun foo(/*0*/ f: ((kotlin.String!) -> kotlin.String!)!): (kotlin.String!.() -> kotlin.String!)!
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class MethodWithGenerics {
|
public open class MethodWithGenerics {
|
||||||
public constructor MethodWithGenerics()
|
public constructor MethodWithGenerics()
|
||||||
public open fun foo(/*0*/ a: kotlin.String, /*1*/ b: kotlin.List<kotlin.Map.Entry<kotlin.String?, kotlin.String>?>): kotlin.String
|
public open fun foo(/*0*/ a: kotlin.String!, /*1*/ b: kotlin.(Mutable)List<kotlin.(Mutable)Map.(Mutable)Entry<kotlin.String!, kotlin.String!>!>!): kotlin.String!
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class MethodWithMappedClasses {
|
public open class MethodWithMappedClasses {
|
||||||
public constructor MethodWithMappedClasses()
|
public constructor MethodWithMappedClasses()
|
||||||
public open fun </*0*/ T> copy(/*0*/ dest: kotlin.MutableList<in T>, /*1*/ src: kotlin.List<T>): kotlin.Unit
|
public open fun </*0*/ T> copy(/*0*/ dest: kotlin.(Mutable)List<in T!>!, /*1*/ src: kotlin.(Mutable)List<T!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
+1
-1
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class MethodWithTypeParameters {
|
public open class MethodWithTypeParameters {
|
||||||
public constructor MethodWithTypeParameters()
|
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>
|
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!>!
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class MethodWithVararg {
|
public open class MethodWithVararg {
|
||||||
public constructor MethodWithVararg()
|
public constructor MethodWithVararg()
|
||||||
public open fun foo(/*0*/ vararg s: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
public open fun foo(/*0*/ vararg s: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@ package test
|
|||||||
|
|
||||||
public open class PropertyArrayTypes</*0*/ T> {
|
public open class PropertyArrayTypes</*0*/ T> {
|
||||||
public constructor PropertyArrayTypes</*0*/ T>()
|
public constructor PropertyArrayTypes</*0*/ T>()
|
||||||
public final var array: kotlin.Array<kotlin.String>
|
public final var array: kotlin.Array<(out) kotlin.String!>!
|
||||||
public final var arrayOfArrays: kotlin.Array<kotlin.Array<kotlin.String>>
|
public final var arrayOfArrays: kotlin.Array<(out) kotlin.Array<(out) kotlin.String!>!>!
|
||||||
public final var genericArray: kotlin.Array<T>
|
public final var genericArray: kotlin.Array<(out) T!>!
|
||||||
}
|
}
|
||||||
@@ -2,8 +2,8 @@ package test
|
|||||||
|
|
||||||
public open class PropertyComplexTypes</*0*/ T> {
|
public open class PropertyComplexTypes</*0*/ T> {
|
||||||
public constructor PropertyComplexTypes</*0*/ T>()
|
public constructor PropertyComplexTypes</*0*/ T>()
|
||||||
public final var genericType: T
|
public final var genericType: T!
|
||||||
public final var listDefinedGeneric: java.util.ArrayList<kotlin.String>
|
public final var listDefinedGeneric: java.util.ArrayList<kotlin.String!>!
|
||||||
public final var listGeneric: java.util.ArrayList<T>
|
public final var listGeneric: java.util.ArrayList<T!>!
|
||||||
public final var listOfGenericList: java.util.ArrayList<java.util.ArrayList<T>>
|
public final var listOfGenericList: java.util.ArrayList<java.util.ArrayList<T!>!>!
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@ package test
|
|||||||
|
|
||||||
public final class StarProjection {
|
public final class StarProjection {
|
||||||
public constructor StarProjection()
|
public constructor StarProjection()
|
||||||
public final fun foo(): test.StarProjection.MyClass<out kotlin.CharSequence!>
|
public final fun foo(): test.StarProjection.MyClass<out kotlin.CharSequence!>!
|
||||||
|
|
||||||
public trait MyClass</*0*/ T : kotlin.CharSequence!> {
|
public trait MyClass</*0*/ T : kotlin.CharSequence!> {
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class RedundantProjectionKind {
|
public open class RedundantProjectionKind {
|
||||||
public constructor RedundantProjectionKind()
|
public constructor RedundantProjectionKind()
|
||||||
public open fun foo(/*0*/ list: kotlin.List<kotlin.Number>): kotlin.Unit
|
public open fun foo(/*0*/ list: kotlin.(Mutable)List<kotlin.Number!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
+1
-1
@@ -2,5 +2,5 @@ package test
|
|||||||
|
|
||||||
public open class WrongProjectionKind {
|
public open class WrongProjectionKind {
|
||||||
public constructor WrongProjectionKind()
|
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>?
|
public open fun copy(/*0*/ a: kotlin.Array<(out) kotlin.Number!>!, /*1*/ b: kotlin.Array<(out) kotlin.Number!>!): kotlin.(Mutable)List<kotlin.Number!>!
|
||||||
}
|
}
|
||||||
+12
-12
@@ -3,20 +3,20 @@ package test
|
|||||||
public trait PropagateTypeArgumentNullable {
|
public trait PropagateTypeArgumentNullable {
|
||||||
|
|
||||||
public trait Sub : test.PropagateTypeArgumentNullable.Super {
|
public trait Sub : test.PropagateTypeArgumentNullable.Super {
|
||||||
public abstract override /*1*/ fun invOutR(): kotlin.MutableList<kotlin.List<kotlin.String?>>
|
public abstract override /*1*/ fun invOutR(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
public abstract override /*1*/ fun invOutS(/*0*/ p: kotlin.MutableList<kotlin.List<kotlin.String?>>): kotlin.Unit
|
public abstract override /*1*/ fun invOutS(/*0*/ p: kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!): kotlin.Unit
|
||||||
public abstract override /*1*/ fun invR(): kotlin.MutableList<kotlin.String?>
|
public abstract override /*1*/ fun invR(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public abstract override /*1*/ fun outOutS(/*0*/ p: kotlin.List<kotlin.List<kotlin.String?>>): kotlin.Unit
|
public abstract override /*1*/ fun outOutS(/*0*/ p: kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!): kotlin.Unit
|
||||||
public abstract override /*1*/ fun outR(): kotlin.List<kotlin.String?>
|
public abstract override /*1*/ fun outR(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public abstract override /*1*/ fun outS(/*0*/ p: kotlin.List<kotlin.String?>): kotlin.Unit
|
public abstract override /*1*/ fun outS(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun invOutR(): kotlin.MutableList<kotlin.List<kotlin.String?>>
|
public abstract fun invOutR(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
public abstract fun invOutS(/*0*/ p: kotlin.MutableList<kotlin.List<kotlin.String?>>): kotlin.Unit
|
public abstract fun invOutS(/*0*/ p: kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!): kotlin.Unit
|
||||||
public abstract fun invR(): kotlin.MutableList<kotlin.String?>
|
public abstract fun invR(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public abstract fun outOutS(/*0*/ p: kotlin.List<kotlin.List<kotlin.String?>>): kotlin.Unit
|
public abstract fun outOutS(/*0*/ p: kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!): kotlin.Unit
|
||||||
public abstract fun outR(): kotlin.List<kotlin.String?>
|
public abstract fun outR(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public abstract fun outS(/*0*/ p: kotlin.List<kotlin.String?>): kotlin.Unit
|
public abstract fun outS(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait ChangeProjectionKind1 {
|
|||||||
|
|
||||||
public trait Sub : test.ChangeProjectionKind1.Super {
|
public trait Sub : test.ChangeProjectionKind1.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait ChangeProjectionKind2 {
|
|||||||
|
|
||||||
public trait Sub : test.ChangeProjectionKind2.Super {
|
public trait Sub : test.ChangeProjectionKind2.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+5
-5
@@ -2,18 +2,18 @@ package test
|
|||||||
|
|
||||||
public trait DeeplySubstitutedClassParameter {
|
public trait DeeplySubstitutedClassParameter {
|
||||||
|
|
||||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E> {
|
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ t: E): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ t: E!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String> {
|
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
public abstract fun foo(/*0*/ t: T!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+5
-5
@@ -2,18 +2,18 @@ package test
|
|||||||
|
|
||||||
public trait DeeplySubstitutedClassParameter2 {
|
public trait DeeplySubstitutedClassParameter2 {
|
||||||
|
|
||||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E> {
|
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ t: E): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ t: E!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String> {
|
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
public abstract fun foo(/*0*/ t: T!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritMutability {
|
|||||||
|
|
||||||
public trait Sub : test.InheritMutability.Super {
|
public trait Sub : test.InheritMutability.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNotVararg {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNotVararg.Super {
|
public trait Sub : test.InheritNotVararg.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>?): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.Array<out kotlin.String!>?): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>?): kotlin.Unit
|
public abstract fun foo(/*0*/ p0: kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNotVarargInteger {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNotVarargInteger.Super {
|
public trait Sub : test.InheritNotVarargInteger.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.Array<out kotlin.Int>?): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.Array<out kotlin.Int!>?): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.Int>?): kotlin.Unit
|
public abstract fun foo(/*0*/ p0: kotlin.Array<(out) kotlin.Int!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNotVarargNotNull {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNotVarargNotNull.Super {
|
public trait Sub : test.InheritNotVarargNotNull.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.Array<out kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.Array<out kotlin.String!>?): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.Array<out kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -9,6 +9,6 @@ public trait InheritNotVarargPrimitive {
|
|||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p0: kotlin.IntArray?): kotlin.Unit
|
public abstract fun foo(/*0*/ p0: kotlin.IntArray!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNullability {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNullability.Super {
|
public trait Sub : test.InheritNullability.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
public abstract fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritProjectionKind {
|
|||||||
|
|
||||||
public trait Sub : test.InheritProjectionKind.Super {
|
public trait Sub : test.InheritProjectionKind.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritReadOnliness {
|
|||||||
|
|
||||||
public trait Sub : test.InheritReadOnliness.Super {
|
public trait Sub : test.InheritReadOnliness.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.List<kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.List<kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritVararg {
|
|||||||
|
|
||||||
public trait Sub : test.InheritVararg.Super {
|
public trait Sub : test.InheritVararg.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: kotlin.String? /*kotlin.Array<kotlin.String?>*/): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ vararg p0: kotlin.String! /*kotlin.Array<kotlin.String!>*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ vararg p0: kotlin.String? /*kotlin.Array<kotlin.String?>*/): kotlin.Unit
|
public abstract fun foo(/*0*/ vararg p0: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritVarargInteger {
|
|||||||
|
|
||||||
public trait Sub : test.InheritVarargInteger.Super {
|
public trait Sub : test.InheritVarargInteger.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: kotlin.Int? /*kotlin.Array<kotlin.Int?>*/): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ vararg p0: kotlin.Int! /*kotlin.Array<kotlin.Int!>*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ vararg p0: kotlin.Int? /*kotlin.Array<kotlin.Int?>*/): kotlin.Unit
|
public abstract fun foo(/*0*/ vararg p0: kotlin.Int! /*kotlin.Array<(out) kotlin.Int!>!*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritVarargNotNull {
|
|||||||
|
|
||||||
public trait Sub : test.InheritVarargNotNull.Super {
|
public trait Sub : test.InheritVarargNotNull.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ vararg p: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ vararg p: kotlin.String! /*kotlin.Array<kotlin.String!>*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ vararg p: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
public abstract fun foo(/*0*/ vararg p: kotlin.String! /*kotlin.Array<(out) kotlin.String!>!*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -9,6 +9,6 @@ public trait InheritVarargPrimitive {
|
|||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ vararg p0: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
|
public abstract fun foo(/*0*/ vararg p0: kotlin.Int /*kotlin.IntArray!*/): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-4
@@ -4,16 +4,16 @@ public trait Kt3302 {
|
|||||||
|
|
||||||
public trait BSONObject {
|
public trait BSONObject {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun put(/*0*/ p0: kotlin.String, /*1*/ p1: kotlin.Any): kotlin.Any?
|
public abstract fun put(/*0*/ p0: kotlin.String!, /*1*/ p1: kotlin.Any!): kotlin.Any!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait BasicBSONObject : test.Kt3302.LinkedHashMap<kotlin.String, kotlin.Any>, test.Kt3302.BSONObject {
|
public trait BasicBSONObject : test.Kt3302.LinkedHashMap<kotlin.String!, kotlin.Any!>, test.Kt3302.BSONObject {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun put(/*0*/ key: kotlin.String, /*1*/ value: kotlin.Any): kotlin.Any?
|
public abstract override /*2*/ fun put(/*0*/ key: kotlin.String!, /*1*/ value: kotlin.Any!): kotlin.Any!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait LinkedHashMap</*0*/ K, /*1*/ V> {
|
public trait LinkedHashMap</*0*/ K, /*1*/ V> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun put(/*0*/ key: K, /*1*/ value: V): V?
|
public abstract fun put(/*0*/ key: K!, /*1*/ value: V!): V!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait MutableToReadOnly {
|
|||||||
|
|
||||||
public trait Sub : test.MutableToReadOnly.Super {
|
public trait Sub : test.MutableToReadOnly.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -4,7 +4,7 @@ public trait NotNullToNullable {
|
|||||||
|
|
||||||
public trait Sub : test.NotNullToNullable.Super {
|
public trait Sub : test.NotNullToNullable.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
|
|||||||
+2
-2
@@ -4,11 +4,11 @@ public trait NullableToNotNullKotlinSignature {
|
|||||||
|
|
||||||
public trait Sub : test.NullableToNotNullKotlinSignature.Super {
|
public trait Sub : test.NullableToNotNullKotlinSignature.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.String?): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.String?): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-3
@@ -2,13 +2,14 @@ package test
|
|||||||
|
|
||||||
public trait OverrideWithErasedParameter {
|
public trait OverrideWithErasedParameter {
|
||||||
|
|
||||||
public trait Sub</*0*/ T> : test.OverrideWithErasedParameter.Super<T> {
|
public trait Sub</*0*/ T> : test.OverrideWithErasedParameter.Super<T!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p0: T?): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: T!): kotlin.Unit
|
||||||
|
public abstract fun foo(/*0*/ p0: kotlin.Any!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p0: T?): kotlin.Unit
|
public abstract fun foo(/*0*/ p0: T!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait ReadOnlyToMutable {
|
|||||||
|
|
||||||
public trait Sub : test.ReadOnlyToMutable.Super {
|
public trait Sub : test.ReadOnlyToMutable.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.List<kotlin.String>): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p: kotlin.List<kotlin.String>): kotlin.Unit
|
public abstract fun foo(/*0*/ p: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-4
@@ -4,16 +4,16 @@ public trait SubclassFromGenericAndNot {
|
|||||||
|
|
||||||
public trait Generic</*0*/ T> {
|
public trait Generic</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ key: T): kotlin.Unit
|
public abstract fun foo(/*0*/ key: T!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait NonGeneric {
|
public trait NonGeneric {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
public abstract fun foo(/*0*/ p0: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<kotlin.String> {
|
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<kotlin.String!> {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(/*0*/ key: kotlin.String): kotlin.Unit
|
public abstract override /*2*/ fun foo(/*0*/ key: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -2,13 +2,13 @@ package test
|
|||||||
|
|
||||||
public trait SubstitutedClassParameter {
|
public trait SubstitutedClassParameter {
|
||||||
|
|
||||||
public trait Sub : test.SubstitutedClassParameter.Super<kotlin.String> {
|
public trait Sub : test.SubstitutedClassParameter.Super<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String): kotlin.Unit
|
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
public abstract fun foo(/*0*/ t: T!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-4
@@ -2,18 +2,18 @@ package test
|
|||||||
|
|
||||||
public trait SubstitutedClassParameters {
|
public trait SubstitutedClassParameters {
|
||||||
|
|
||||||
public trait Sub : test.SubstitutedClassParameters.Super1<kotlin.String>, test.SubstitutedClassParameters.Super2<kotlin.String> {
|
public trait Sub : test.SubstitutedClassParameters.Super1<kotlin.String!>, test.SubstitutedClassParameters.Super2<kotlin.String!> {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(/*0*/ t: kotlin.String): kotlin.Unit
|
public abstract override /*2*/ fun foo(/*0*/ t: kotlin.String!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1</*0*/ T> {
|
public trait Super1</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
public abstract fun foo(/*0*/ t: T!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2</*0*/ E> {
|
public trait Super2</*0*/ E> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(/*0*/ t: E): kotlin.Unit
|
public abstract fun foo(/*0*/ t: E!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait AddNotNullJavaSubtype {
|
|||||||
|
|
||||||
public trait Sub : test.AddNotNullJavaSubtype.Super {
|
public trait Sub : test.AddNotNullJavaSubtype.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence?
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait AddNotNullSameJavaType {
|
|||||||
|
|
||||||
public trait Sub : test.AddNotNullSameJavaType.Super {
|
public trait Sub : test.AddNotNullSameJavaType.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.CharSequence
|
public abstract override /*1*/ fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence?
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait AddNullabilityJavaSubtype {
|
|||||||
|
|
||||||
public trait Sub : test.AddNullabilityJavaSubtype.Super {
|
public trait Sub : test.AddNullabilityJavaSubtype.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait AddNullabilitySameGenericType1 {
|
|||||||
|
|
||||||
public trait Sub : test.AddNullabilitySameGenericType1.Super {
|
public trait Sub : test.AddNullabilitySameGenericType1.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait AddNullabilitySameGenericType2 {
|
|||||||
|
|
||||||
public trait Sub : test.AddNullabilitySameGenericType2.Super {
|
public trait Sub : test.AddNullabilitySameGenericType2.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait AddNullabilitySameJavaType {
|
|||||||
|
|
||||||
public trait Sub : test.AddNullabilitySameJavaType.Super {
|
public trait Sub : test.AddNullabilitySameJavaType.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.CharSequence
|
public abstract override /*1*/ fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait CantMakeImmutableInSubclass {
|
|||||||
|
|
||||||
public trait Sub : test.CantMakeImmutableInSubclass.Super {
|
public trait Sub : test.CantMakeImmutableInSubclass.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+5
-5
@@ -2,18 +2,18 @@ package test
|
|||||||
|
|
||||||
public trait DeeplySubstitutedClassParameter {
|
public trait DeeplySubstitutedClassParameter {
|
||||||
|
|
||||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E> {
|
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): E
|
public abstract override /*1*/ fun foo(): E!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String> {
|
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+5
-5
@@ -2,18 +2,18 @@ package test
|
|||||||
|
|
||||||
public trait DeeplySubstitutedClassParameter2 {
|
public trait DeeplySubstitutedClassParameter2 {
|
||||||
|
|
||||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E> {
|
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ /*fake_override*/ fun foo(): E
|
public abstract override /*1*/ /*fake_override*/ fun foo(): E!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String> {
|
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+14
-14
@@ -4,35 +4,35 @@ public trait HalfSubstitutedTypeParameters {
|
|||||||
|
|
||||||
public trait Sub : test.HalfSubstitutedTypeParameters.Super {
|
public trait Sub : test.HalfSubstitutedTypeParameters.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): test.HalfSubstitutedTypeParameters.TrickyList<kotlin.Int, kotlin.String?>
|
public abstract override /*1*/ fun foo(): test.HalfSubstitutedTypeParameters.TrickyList<kotlin.Int!, kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableList<kotlin.String?>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait TrickyList</*0*/ X, /*1*/ E> : kotlin.MutableList<E> {
|
public trait TrickyList</*0*/ X, /*1*/ E> : kotlin.MutableList<E!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ e: E): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ e: E!): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ index: kotlin.Int, /*1*/ element: E): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ index: kotlin.Int, /*1*/ element: E!): kotlin.Unit
|
||||||
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ c: kotlin.Collection<E>): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ c: kotlin.Collection<E!>): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ index: kotlin.Int, /*1*/ c: kotlin.Collection<E>): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ index: kotlin.Int, /*1*/ c: kotlin.Collection<E!>): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun clear(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun clear(): kotlin.Unit
|
||||||
public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ index: kotlin.Int): E
|
public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ index: kotlin.Int): E!
|
||||||
public abstract override /*1*/ /*fake_override*/ fun indexOf(/*0*/ o: kotlin.Any?): kotlin.Int
|
public abstract override /*1*/ /*fake_override*/ fun indexOf(/*0*/ o: kotlin.Any?): kotlin.Int
|
||||||
public abstract override /*1*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun iterator(): kotlin.MutableIterator<E>
|
public abstract override /*1*/ /*fake_override*/ fun iterator(): kotlin.MutableIterator<E!>
|
||||||
public abstract override /*1*/ /*fake_override*/ fun lastIndexOf(/*0*/ o: kotlin.Any?): kotlin.Int
|
public abstract override /*1*/ /*fake_override*/ fun lastIndexOf(/*0*/ o: kotlin.Any?): kotlin.Int
|
||||||
public abstract override /*1*/ /*fake_override*/ fun listIterator(): kotlin.MutableListIterator<E>
|
public abstract override /*1*/ /*fake_override*/ fun listIterator(): kotlin.MutableListIterator<E!>
|
||||||
public abstract override /*1*/ /*fake_override*/ fun listIterator(/*0*/ index: kotlin.Int): kotlin.MutableListIterator<E>
|
public abstract override /*1*/ /*fake_override*/ fun listIterator(/*0*/ index: kotlin.Int): kotlin.MutableListIterator<E!>
|
||||||
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ index: kotlin.Int): E
|
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ index: kotlin.Int): E!
|
||||||
public abstract override /*1*/ /*fake_override*/ fun removeAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
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 retainAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun set(/*0*/ index: kotlin.Int, /*1*/ element: E): E
|
public abstract override /*1*/ /*fake_override*/ fun set(/*0*/ index: kotlin.Int, /*1*/ element: E!): E!
|
||||||
public abstract override /*1*/ /*fake_override*/ fun size(): kotlin.Int
|
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>
|
public abstract override /*1*/ /*fake_override*/ fun subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.MutableList<E!>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNullabilityGenericSubclassSimple {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNullabilityGenericSubclassSimple.Super {
|
public trait Sub : test.InheritNullabilityGenericSubclassSimple.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNullabilityJavaSubtype {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNullabilityJavaSubtype.Super {
|
public trait Sub : test.InheritNullabilityJavaSubtype.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNullabilitySameGenericType {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNullabilitySameGenericType.Super {
|
public trait Sub : test.InheritNullabilitySameGenericType.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritNullabilitySameJavaType {
|
|||||||
|
|
||||||
public trait Sub : test.InheritNullabilitySameJavaType.Super {
|
public trait Sub : test.InheritNullabilitySameJavaType.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.CharSequence
|
public abstract override /*1*/ fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritProjectionKind {
|
|||||||
|
|
||||||
public trait Sub : test.InheritProjectionKind.Super {
|
public trait Sub : test.InheritProjectionKind.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<out kotlin.Number>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.Number!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.Number>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.Number!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritReadOnlinessOfArgument {
|
|||||||
|
|
||||||
public trait Sub : test.InheritReadOnlinessOfArgument.Super {
|
public trait Sub : test.InheritReadOnlinessOfArgument.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.List<kotlin.List<kotlin.String>>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.List<kotlin.String>>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritReadOnlinessSameClass {
|
|||||||
|
|
||||||
public trait Sub : test.InheritReadOnlinessSameClass.Super {
|
public trait Sub : test.InheritReadOnlinessSameClass.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.List<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait InheritReadOnlinessSubclass {
|
|||||||
|
|
||||||
public trait Sub : test.InheritReadOnlinessSubclass.Super {
|
public trait Sub : test.InheritReadOnlinessSubclass.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.List<kotlin.String>
|
public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.Collection<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait SameProjectionKind {
|
|||||||
|
|
||||||
public trait Sub : test.SameProjectionKind.Super {
|
public trait Sub : test.SameProjectionKind.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.MutableCollection<out kotlin.Number?>?
|
public abstract override /*1*/ fun foo(): (kotlin.MutableCollection<out kotlin.Number!>..kotlin.Collection<kotlin.Number!>?)
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.Number?>?
|
public abstract fun foo(): (kotlin.MutableCollection<out kotlin.Number!>..kotlin.Collection<kotlin.Number!>?)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-4
@@ -4,16 +4,16 @@ public trait SubclassFromGenericAndNot {
|
|||||||
|
|
||||||
public trait Generic</*0*/ T> {
|
public trait Generic</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait NonGeneric {
|
public trait NonGeneric {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.String?
|
public abstract fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<kotlin.String> {
|
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<kotlin.String!> {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.String
|
public abstract override /*2*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-4
@@ -1,13 +1,13 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public trait SubclassOfCollection</*0*/ E> : kotlin.MutableCollection<E> {
|
public trait SubclassOfCollection</*0*/ E> : kotlin.MutableCollection<E!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ e: E): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ e: E!): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ c: kotlin.Collection<E>): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ c: kotlin.Collection<E!>): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun clear(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun clear(): kotlin.Unit
|
||||||
public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
||||||
public abstract override /*1*/ fun iterator(): kotlin.MutableIterator<E>
|
public abstract override /*1*/ fun iterator(): kotlin.(Mutable)Iterator<E!>!
|
||||||
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean
|
||||||
public abstract override /*1*/ /*fake_override*/ fun removeAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
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 retainAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||||
|
|||||||
+4
-4
@@ -1,7 +1,7 @@
|
|||||||
package test
|
package test
|
||||||
|
|
||||||
public trait SubclassOfMapEntry</*0*/ K, /*1*/ V> : kotlin.MutableMap.MutableEntry<K, V> {
|
public trait SubclassOfMapEntry</*0*/ K, /*1*/ V> : kotlin.MutableMap.MutableEntry<K!, V!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun getKey(): K
|
public abstract override /*1*/ /*fake_override*/ fun getKey(): K!
|
||||||
public abstract override /*1*/ /*fake_override*/ fun getValue(): V
|
public abstract override /*1*/ /*fake_override*/ fun getValue(): V!
|
||||||
public abstract override /*1*/ fun setValue(/*0*/ value: V): V
|
public abstract override /*1*/ fun setValue(/*0*/ value: V!): V!
|
||||||
}
|
}
|
||||||
+3
-3
@@ -2,13 +2,13 @@ package test
|
|||||||
|
|
||||||
public trait SubstitutedClassParameter {
|
public trait SubstitutedClassParameter {
|
||||||
|
|
||||||
public trait Sub : test.SubstitutedClassParameter.Super<kotlin.String> {
|
public trait Sub : test.SubstitutedClassParameter.Super<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+4
-4
@@ -2,18 +2,18 @@ package test
|
|||||||
|
|
||||||
public trait SubstitutedClassParameters {
|
public trait SubstitutedClassParameters {
|
||||||
|
|
||||||
public trait Sub : test.SubstitutedClassParameters.Super1<kotlin.String>, test.SubstitutedClassParameters.Super2<kotlin.String> {
|
public trait Sub : test.SubstitutedClassParameters.Super1<kotlin.String!>, test.SubstitutedClassParameters.Super2<kotlin.String!> {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.String
|
public abstract override /*2*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1</*0*/ T> {
|
public trait Super1</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2</*0*/ E> {
|
public trait Super2</*0*/ E> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): E
|
public abstract fun foo(): E!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesConflictingProjectionKinds {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesConflictingProjectionKinds.Super1, test.TwoSuperclassesConflictingProjectionKinds.Super2 {
|
public trait Sub : test.TwoSuperclassesConflictingProjectionKinds.Super1, test.TwoSuperclassesConflictingProjectionKinds.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.MutableCollection<kotlin.CharSequence>
|
public abstract override /*2*/ fun foo(): kotlin.(Mutable)Collection<kotlin.CharSequence!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.CharSequence>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.CharSequence!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.CharSequence>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.CharSequence!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesInvariantAndCovariantInferMutability {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesInvariantAndCovariantInferMutability.Super1, test.TwoSuperclassesInvariantAndCovariantInferMutability.Super2 {
|
public trait Sub : test.TwoSuperclassesInvariantAndCovariantInferMutability.Super1, test.TwoSuperclassesInvariantAndCovariantInferMutability.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.MutableList<kotlin.MutableList<kotlin.String>>
|
public abstract override /*2*/ fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.List<kotlin.String>>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableList<kotlin.MutableList<kotlin.String>>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesInvariantAndCovariantInferNullability {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesInvariantAndCovariantInferNullability.Super1, test.TwoSuperclassesInvariantAndCovariantInferNullability.Super2 {
|
public trait Sub : test.TwoSuperclassesInvariantAndCovariantInferNullability.Super1, test.TwoSuperclassesInvariantAndCovariantInferNullability.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*2*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.String?>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesMutableAndNot {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesMutableAndNot.Super1, test.TwoSuperclassesMutableAndNot.Super2 {
|
public trait Sub : test.TwoSuperclassesMutableAndNot.Super1, test.TwoSuperclassesMutableAndNot.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.MutableList<kotlin.String>
|
public abstract override /*2*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.String>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesReturnJavaSubtype {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesReturnJavaSubtype.Super1, test.TwoSuperclassesReturnJavaSubtype.Super2 {
|
public trait Sub : test.TwoSuperclassesReturnJavaSubtype.Super1, test.TwoSuperclassesReturnJavaSubtype.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.String
|
public abstract override /*2*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence?
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesReturnSameJavaType {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesReturnSameJavaType.Super1, test.TwoSuperclassesReturnSameJavaType.Super2 {
|
public trait Sub : test.TwoSuperclassesReturnSameJavaType.Super1, test.TwoSuperclassesReturnSameJavaType.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.CharSequence
|
public abstract override /*2*/ fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence?
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.CharSequence
|
public abstract fun foo(): kotlin.CharSequence!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -4,16 +4,16 @@ public trait TwoSuperclassesSupplementNotNull {
|
|||||||
|
|
||||||
public trait Sub : test.TwoSuperclassesSupplementNotNull.Super1, test.TwoSuperclassesSupplementNotNull.Super2 {
|
public trait Sub : test.TwoSuperclassesSupplementNotNull.Super1, test.TwoSuperclassesSupplementNotNull.Super2 {
|
||||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*2*/ fun foo(): kotlin.List<kotlin.String>
|
public abstract override /*2*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.String?>
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): kotlin.List<kotlin.String>?
|
public abstract fun foo(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -2,13 +2,13 @@ package test
|
|||||||
|
|
||||||
public trait TypeParamOfClass {
|
public trait TypeParamOfClass {
|
||||||
|
|
||||||
public trait Sub</*0*/ T> : test.TypeParamOfClass.Super<T> {
|
public trait Sub</*0*/ T> : test.TypeParamOfClass.Super<T!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): T
|
public abstract override /*1*/ fun foo(): T!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -2,13 +2,13 @@ package test
|
|||||||
|
|
||||||
public trait TypeParamOfClassSubstituted {
|
public trait TypeParamOfClassSubstituted {
|
||||||
|
|
||||||
public trait Sub : test.TypeParamOfClassSubstituted.Super<kotlin.String> {
|
public trait Sub : test.TypeParamOfClassSubstituted.Super<kotlin.String!> {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun foo(): kotlin.String
|
public abstract override /*1*/ fun foo(): kotlin.String!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super</*0*/ T> {
|
public trait Super</*0*/ T> {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun foo(): T
|
public abstract fun foo(): T!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -4,11 +4,11 @@ public trait TypeParamOfFun {
|
|||||||
|
|
||||||
public trait Sub : test.TypeParamOfFun.Super {
|
public trait Sub : test.TypeParamOfFun.Super {
|
||||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||||
public abstract override /*1*/ fun </*0*/ E> foo(): E
|
public abstract override /*1*/ fun </*0*/ E> foo(): E!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun dummy(): kotlin.Unit
|
public abstract fun dummy(): kotlin.Unit
|
||||||
public abstract fun </*0*/ T> foo(): T
|
public abstract fun </*0*/ T> foo(): T!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait InheritMutability {
|
public trait InheritMutability {
|
||||||
|
|
||||||
public trait Sub : test.InheritMutability.Super {
|
public trait Sub : test.InheritMutability.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B : kotlin.MutableList<kotlin.String>> foo(/*0*/ a: B): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B : kotlin.(Mutable)List<kotlin.String!>!> foo(/*0*/ a: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A : kotlin.MutableList<kotlin.String>> foo(/*0*/ a: A): kotlin.Unit
|
public abstract fun </*0*/ A : kotlin.(Mutable)List<kotlin.String!>!> foo(/*0*/ a: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait InheritNullability {
|
public trait InheritNullability {
|
||||||
|
|
||||||
public trait Sub : test.InheritNullability.Super {
|
public trait Sub : test.InheritNullability.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence> foo(/*0*/ a: B): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence!> foo(/*0*/ a: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A : kotlin.CharSequence> foo(/*0*/ a: A): kotlin.Unit
|
public abstract fun </*0*/ A : kotlin.CharSequence!> foo(/*0*/ a: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait InheritReadOnliness {
|
public trait InheritReadOnliness {
|
||||||
|
|
||||||
public trait Sub : test.InheritReadOnliness.Super {
|
public trait Sub : test.InheritReadOnliness.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B : kotlin.List<kotlin.String>> foo(/*0*/ a: B): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B : kotlin.(Mutable)List<kotlin.String!>!> foo(/*0*/ a: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A : kotlin.List<kotlin.String>> foo(/*0*/ a: A): kotlin.Unit
|
public abstract fun </*0*/ A : kotlin.(Mutable)List<kotlin.String!>!> foo(/*0*/ a: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait TwoBounds {
|
public trait TwoBounds {
|
||||||
|
|
||||||
public trait Sub : test.TwoBounds.Super {
|
public trait Sub : test.TwoBounds.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence> foo(/*0*/ a: B): kotlin.Unit where B : kotlin.Cloneable
|
public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence!> foo(/*0*/ a: B!): kotlin.Unit where B : kotlin.Cloneable!
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A : kotlin.CharSequence> foo(/*0*/ a: A): kotlin.Unit where A : kotlin.Cloneable
|
public abstract fun </*0*/ A : kotlin.CharSequence!> foo(/*0*/ a: A!): kotlin.Unit where A : kotlin.Cloneable!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -3,14 +3,14 @@ package test
|
|||||||
public trait TwoSuperclasses {
|
public trait TwoSuperclasses {
|
||||||
|
|
||||||
public trait Sub : test.TwoSuperclasses.Super1, test.TwoSuperclasses.Super2 {
|
public trait Sub : test.TwoSuperclasses.Super1, test.TwoSuperclasses.Super2 {
|
||||||
public abstract override /*2*/ fun </*0*/ C : kotlin.CharSequence> foo(/*0*/ a: C): kotlin.Unit
|
public abstract override /*2*/ fun </*0*/ C : kotlin.CharSequence!> foo(/*0*/ a: C!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super1 {
|
public trait Super1 {
|
||||||
public abstract fun </*0*/ A : kotlin.CharSequence> foo(/*0*/ a: A): kotlin.Unit
|
public abstract fun </*0*/ A : kotlin.CharSequence!> foo(/*0*/ a: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super2 {
|
public trait Super2 {
|
||||||
public abstract fun </*0*/ B : kotlin.CharSequence> foo(/*0*/ a: B): kotlin.Unit
|
public abstract fun </*0*/ B : kotlin.CharSequence!> foo(/*0*/ a: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait TwoTypeParameters {
|
public trait TwoTypeParameters {
|
||||||
|
|
||||||
public trait Sub : test.TwoTypeParameters.Super {
|
public trait Sub : test.TwoTypeParameters.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence, /*1*/ A : kotlin.Cloneable> foo(/*0*/ a: B, /*1*/ b: A): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence!, /*1*/ A : kotlin.Cloneable!> foo(/*0*/ a: B!, /*1*/ b: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A : kotlin.CharSequence, /*1*/ B : kotlin.Cloneable> foo(/*0*/ a: A, /*1*/ b: B): kotlin.Unit
|
public abstract fun </*0*/ A : kotlin.CharSequence!, /*1*/ B : kotlin.Cloneable!> foo(/*0*/ a: A!, /*1*/ b: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait UseParameterAsUpperBound {
|
public trait UseParameterAsUpperBound {
|
||||||
|
|
||||||
public trait Sub : test.UseParameterAsUpperBound.Super {
|
public trait Sub : test.UseParameterAsUpperBound.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : B> foo(/*0*/ a: B, /*1*/ b: A): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : B!> foo(/*0*/ a: B!, /*1*/ b: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A, /*1*/ B : A> foo(/*0*/ a: A, /*1*/ b: B): kotlin.Unit
|
public abstract fun </*0*/ A, /*1*/ B : A!> foo(/*0*/ a: A!, /*1*/ b: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait UseParameterInUpperBound {
|
public trait UseParameterInUpperBound {
|
||||||
|
|
||||||
public trait Sub : test.UseParameterInUpperBound.Super {
|
public trait Sub : test.UseParameterInUpperBound.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : kotlin.List<B>> foo(/*0*/ a: B, /*1*/ b: A): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : kotlin.(Mutable)List<B!>!> foo(/*0*/ a: B!, /*1*/ b: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A, /*1*/ B : kotlin.List<A>> foo(/*0*/ a: A, /*1*/ b: B): kotlin.Unit
|
public abstract fun </*0*/ A, /*1*/ B : kotlin.(Mutable)List<A!>!> foo(/*0*/ a: A!, /*1*/ b: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -3,10 +3,10 @@ package test
|
|||||||
public trait UseParameterInUpperBoundWithKotlinSignature {
|
public trait UseParameterInUpperBoundWithKotlinSignature {
|
||||||
|
|
||||||
public trait Sub : test.UseParameterInUpperBoundWithKotlinSignature.Super {
|
public trait Sub : test.UseParameterInUpperBoundWithKotlinSignature.Super {
|
||||||
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : kotlin.List<B>> foo(/*0*/ b: B, /*1*/ a: A): kotlin.Unit
|
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : kotlin.(Mutable)List<B!>!> foo(/*0*/ b: B!, /*1*/ a: A!): kotlin.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun </*0*/ A, /*1*/ B : kotlin.List<A>> foo(/*0*/ a: A, /*1*/ b: B): kotlin.Unit
|
public abstract fun </*0*/ A, /*1*/ B : kotlin.(Mutable)List<A!>!> foo(/*0*/ a: A!, /*1*/ b: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -28,5 +28,5 @@ public open class ModalityOfFakeOverrides : java.util.AbstractList<kotlin.String
|
|||||||
public open override /*1*/ fun size(): kotlin.Int
|
public open override /*1*/ fun size(): kotlin.Int
|
||||||
public open override /*1*/ /*fake_override*/ fun subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.(Mutable)List<kotlin.String!>!
|
public open override /*1*/ /*fake_override*/ fun subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public open override /*1*/ /*fake_override*/ fun toArray(): kotlin.Array<(out) kotlin.Any!>!
|
public open override /*1*/ /*fake_override*/ fun toArray(): kotlin.Array<(out) kotlin.Any!>!
|
||||||
public open override /*1*/ /*fake_override*/ fun </*0*/ T> toArray(/*0*/ p0: kotlin.Array<(out) T!>!): kotlin.Array<(out) T!>!
|
public open override /*1*/ /*fake_override*/ fun </*0*/ T> toArray(/*0*/ a: kotlin.Array<(out) T!>!): kotlin.Array<(out) T!>!
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,7 @@ public trait SamSubinterfaceOfTwo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Sub(/*0*/ function: () -> kotlin.String!): test.SamSubinterfaceOfTwo.Sub
|
public final /*synthesized*/ fun Sub(/*0*/ function: () -> kotlin.String!): test.SamSubinterfaceOfTwo.Sub
|
||||||
public /*synthesized*/ fun Super1(/*0*/ function: () -> kotlin.CharSequence!): test.SamSubinterfaceOfTwo.Super1
|
public final /*synthesized*/ fun Super1(/*0*/ function: () -> kotlin.CharSequence!): test.SamSubinterfaceOfTwo.Super1
|
||||||
public /*synthesized*/ fun </*0*/ T> Super2(/*0*/ function: () -> T!): test.SamSubinterfaceOfTwo.Super2<T>
|
public final /*synthesized*/ fun </*0*/ T> Super2(/*0*/ function: () -> T!): test.SamSubinterfaceOfTwo.Super2<T>
|
||||||
}
|
}
|
||||||
@@ -6,6 +6,6 @@ public open class Basic {
|
|||||||
public open fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
public open fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun bar(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
|
public final /*synthesized*/ fun bar(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
|
||||||
public open fun bar(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
public open fun bar(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
||||||
}
|
}
|
||||||
@@ -13,6 +13,6 @@ public trait DeepSamLoop {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Bar(/*0*/ function: (test.DeepSamLoop.Foo!) -> kotlin.Unit): test.DeepSamLoop.Bar
|
public final /*synthesized*/ fun Bar(/*0*/ function: (test.DeepSamLoop.Foo!) -> kotlin.Unit): test.DeepSamLoop.Bar
|
||||||
public /*synthesized*/ fun Foo(/*0*/ function: (test.DeepSamLoop.Bar!) -> kotlin.Unit): test.DeepSamLoop.Foo
|
public final /*synthesized*/ fun Foo(/*0*/ function: (test.DeepSamLoop.Bar!) -> kotlin.Unit): test.DeepSamLoop.Foo
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,6 @@ public open class SeveralSamParameters {
|
|||||||
public constructor SeveralSamParameters()
|
public constructor SeveralSamParameters()
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun findMaxAndInvokeCallback(/*0*/ p0: ((kotlin.String!, kotlin.String!) -> kotlin.Int)!, /*1*/ p1: kotlin.String!, /*2*/ p2: kotlin.String!, /*3*/ p3: (() -> kotlin.Unit)!): kotlin.String!
|
public final /*synthesized*/ fun findMaxAndInvokeCallback(/*0*/ p0: ((kotlin.String!, kotlin.String!) -> kotlin.Int)!, /*1*/ p1: kotlin.String!, /*2*/ p2: kotlin.String!, /*3*/ p3: (() -> kotlin.Unit)!): kotlin.String!
|
||||||
public open fun findMaxAndInvokeCallback(/*0*/ p0: java.util.Comparator<kotlin.String!>!, /*1*/ p1: kotlin.String!, /*2*/ p2: kotlin.String!, /*3*/ p3: java.lang.Runnable!): kotlin.String!
|
public open fun findMaxAndInvokeCallback(/*0*/ p0: java.util.Comparator<kotlin.String!>!, /*1*/ p1: kotlin.String!, /*2*/ p2: kotlin.String!, /*3*/ p3: java.lang.Runnable!): kotlin.String!
|
||||||
}
|
}
|
||||||
@@ -4,10 +4,10 @@ public open class TypeParameterOfMethod {
|
|||||||
public constructor TypeParameterOfMethod()
|
public constructor TypeParameterOfMethod()
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun </*0*/ T> max(/*0*/ p0: ((T!, T!) -> kotlin.Int)!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
public final /*synthesized*/ fun </*0*/ T> max(/*0*/ p0: ((T!, T!) -> kotlin.Int)!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
||||||
public open fun </*0*/ T> max(/*0*/ p0: java.util.Comparator<T!>!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
public open fun </*0*/ T> max(/*0*/ p0: java.util.Comparator<T!>!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
||||||
public /*synthesized*/ fun </*0*/ T : kotlin.CharSequence!> max2(/*0*/ p0: ((T!, T!) -> kotlin.Int)!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
public final /*synthesized*/ fun </*0*/ T : kotlin.CharSequence!> max2(/*0*/ p0: ((T!, T!) -> kotlin.Int)!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
||||||
public open fun </*0*/ T : kotlin.CharSequence!> max2(/*0*/ p0: java.util.Comparator<T!>!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
public open fun </*0*/ T : kotlin.CharSequence!> max2(/*0*/ p0: java.util.Comparator<T!>!, /*1*/ p1: T!, /*2*/ p2: T!): T!
|
||||||
public /*synthesized*/ fun </*0*/ A : kotlin.CharSequence!, /*1*/ B : kotlin.(Mutable)List<A!>!> method(/*0*/ p0: ((A!, A!) -> kotlin.Int)!, /*1*/ p1: B!): kotlin.Unit
|
public final /*synthesized*/ fun </*0*/ A : kotlin.CharSequence!, /*1*/ B : kotlin.(Mutable)List<A!>!> method(/*0*/ p0: ((A!, A!) -> kotlin.Int)!, /*1*/ p1: B!): kotlin.Unit
|
||||||
public open fun </*0*/ A : kotlin.CharSequence!, /*1*/ B : kotlin.(Mutable)List<A!>!> method(/*0*/ p0: java.util.Comparator<A!>!, /*1*/ p1: B!): kotlin.Unit
|
public open fun </*0*/ A : kotlin.CharSequence!, /*1*/ B : kotlin.(Mutable)List<A!>!> method(/*0*/ p0: java.util.Comparator<A!>!, /*1*/ p1: B!): kotlin.Unit
|
||||||
}
|
}
|
||||||
+1
-1
@@ -13,5 +13,5 @@ public trait AdapterDoesntOverrideDeclaration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Super(/*0*/ function: ((() -> kotlin.Unit!)!) -> kotlin.Unit): test.AdapterDoesntOverrideDeclaration.Super
|
public final /*synthesized*/ fun Super(/*0*/ function: ((() -> kotlin.Unit!)!) -> kotlin.Unit): test.AdapterDoesntOverrideDeclaration.Super
|
||||||
}
|
}
|
||||||
+3
-3
@@ -18,7 +18,7 @@ public trait InheritedSameAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Sub(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSameAdapters.Sub
|
public final /*synthesized*/ fun Sub(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSameAdapters.Sub
|
||||||
public /*synthesized*/ fun Super1(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSameAdapters.Super1
|
public final /*synthesized*/ fun Super1(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSameAdapters.Super1
|
||||||
public /*synthesized*/ fun Super2(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSameAdapters.Super2
|
public final /*synthesized*/ fun Super2(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSameAdapters.Super2
|
||||||
}
|
}
|
||||||
+4
-4
@@ -23,8 +23,8 @@ public trait InheritedSameAdaptersWithSubstitution {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Sub(/*0*/ function: (java.util.Comparator<kotlin.String!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Sub
|
public final /*synthesized*/ fun Sub(/*0*/ function: (java.util.Comparator<kotlin.String!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Sub
|
||||||
public /*synthesized*/ fun Super1(/*0*/ function: (java.util.Comparator<kotlin.String!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Super1
|
public final /*synthesized*/ fun Super1(/*0*/ function: (java.util.Comparator<kotlin.String!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Super1
|
||||||
public /*synthesized*/ fun </*0*/ T> Super2(/*0*/ function: (java.util.Comparator<T!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Super2<T>
|
public final /*synthesized*/ fun </*0*/ T> Super2(/*0*/ function: (java.util.Comparator<T!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Super2<T>
|
||||||
public /*synthesized*/ fun Super2Substituted(/*0*/ function: (java.util.Comparator<kotlin.String!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Super2Substituted
|
public final /*synthesized*/ fun Super2Substituted(/*0*/ function: (java.util.Comparator<kotlin.String!>!) -> kotlin.Unit): test.InheritedSameAdaptersWithSubstitution.Super2Substituted
|
||||||
}
|
}
|
||||||
+2
-2
@@ -13,6 +13,6 @@ public trait InheritedSimple {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun Sub(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSimple.Sub
|
public final /*synthesized*/ fun Sub(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSimple.Sub
|
||||||
public /*synthesized*/ fun Super(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSimple.Super
|
public final /*synthesized*/ fun Super(/*0*/ function: (java.lang.Runnable!) -> kotlin.Unit): test.InheritedSimple.Super
|
||||||
}
|
}
|
||||||
@@ -13,5 +13,5 @@ public open class RawSuperType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Static members
|
// Static members
|
||||||
public /*synthesized*/ fun </*0*/ T> Super(/*0*/ function: (T!) -> kotlin.Unit): test.RawSuperType.Super<T>
|
public final /*synthesized*/ fun </*0*/ T> Super(/*0*/ function: (T!) -> kotlin.Unit): test.RawSuperType.Super<T>
|
||||||
}
|
}
|
||||||
+16
-16
@@ -3,24 +3,24 @@ package test
|
|||||||
public trait SubclassWithRawType {
|
public trait SubclassWithRawType {
|
||||||
|
|
||||||
public trait Sub : test.SubclassWithRawType.Super {
|
public trait Sub : test.SubclassWithRawType.Super {
|
||||||
public abstract override /*1*/ fun array1(): kotlin.Array<kotlin.List<kotlin.String?>>?
|
public abstract override /*1*/ fun array1(): kotlin.Array<(out) kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
public abstract override /*1*/ fun array2(): kotlin.Array<kotlin.List<kotlin.Any>>?
|
public abstract override /*1*/ fun array2(): kotlin.Array<(out) (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)>!
|
||||||
public abstract override /*1*/ fun boundWildcard1(): kotlin.MutableList<out kotlin.List<kotlin.String?>?>?
|
public abstract override /*1*/ fun boundWildcard1(): (kotlin.MutableList<out kotlin.(Mutable)List<kotlin.String!>!>..kotlin.List<kotlin.(Mutable)List<kotlin.String!>!>?)
|
||||||
public abstract override /*1*/ fun boundWildcard2(): kotlin.MutableList<in kotlin.List<kotlin.Any>?>?
|
public abstract override /*1*/ fun boundWildcard2(): kotlin.(Mutable)List<in (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)>!
|
||||||
public abstract override /*1*/ fun simple1(): kotlin.MutableList<out kotlin.String?>?
|
public abstract override /*1*/ fun simple1(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public abstract override /*1*/ fun simple2(): kotlin.MutableList<out kotlin.List<kotlin.String>?>?
|
public abstract override /*1*/ fun simple2(): kotlin.(Mutable)List<kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
public abstract override /*1*/ fun simple3(): kotlin.MutableList<out kotlin.Any>?
|
public abstract override /*1*/ fun simple3(): (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)
|
||||||
public abstract override /*1*/ fun wildcard(): kotlin.MutableList<out kotlin.Any?>?
|
public abstract override /*1*/ fun wildcard(): (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)
|
||||||
}
|
}
|
||||||
|
|
||||||
public trait Super {
|
public trait Super {
|
||||||
public abstract fun array1(): kotlin.Array<kotlin.List<kotlin.Any?>>?
|
public abstract fun array1(): kotlin.Array<(out) (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)>!
|
||||||
public abstract fun array2(): kotlin.Array<kotlin.List<kotlin.String>>?
|
public abstract fun array2(): kotlin.Array<(out) kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
public abstract fun boundWildcard1(): kotlin.MutableList<out kotlin.List<kotlin.Any?>?>?
|
public abstract fun boundWildcard1(): (kotlin.MutableList<out (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)>..kotlin.List<(kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)>?)
|
||||||
public abstract fun boundWildcard2(): kotlin.MutableList<in kotlin.List<kotlin.String>?>?
|
public abstract fun boundWildcard2(): kotlin.(Mutable)List<in kotlin.(Mutable)List<kotlin.String!>!>!
|
||||||
public abstract fun simple1(): kotlin.MutableList<out kotlin.Any?>?
|
public abstract fun simple1(): (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)
|
||||||
public abstract fun simple2(): kotlin.MutableList<out kotlin.Any?>?
|
public abstract fun simple2(): (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)
|
||||||
public abstract fun simple3(): kotlin.MutableList<kotlin.String>?
|
public abstract fun simple3(): kotlin.(Mutable)List<kotlin.String!>!
|
||||||
public abstract fun wildcard(): kotlin.MutableList<out kotlin.Any?>?
|
public abstract fun wildcard(): (kotlin.MutableList<out kotlin.Any?>..kotlin.List<kotlin.Any?>?)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user