Replace "jet" package name with "kotlin" in testData
This commit is contained in:
+12
-12
@@ -3,20 +3,20 @@ package test
|
||||
public trait PropagateTypeArgumentNullable : java.lang.Object {
|
||||
|
||||
public trait Sub : test.PropagateTypeArgumentNullable.Super {
|
||||
public abstract override /*1*/ fun invOutR(): jet.MutableList<jet.List<jet.String?>>
|
||||
public abstract override /*1*/ fun invOutS(/*0*/ p0: jet.MutableList<jet.List<jet.String?>>): jet.Unit
|
||||
public abstract override /*1*/ fun invR(): jet.MutableList<jet.String?>
|
||||
public abstract override /*1*/ fun outOutS(/*0*/ p0: jet.List<jet.List<jet.String?>>): jet.Unit
|
||||
public abstract override /*1*/ fun outR(): jet.List<jet.String?>
|
||||
public abstract override /*1*/ fun outS(/*0*/ p0: jet.List<jet.String?>): jet.Unit
|
||||
public abstract override /*1*/ fun invOutR(): kotlin.MutableList<kotlin.List<kotlin.String?>>
|
||||
public abstract override /*1*/ fun invOutS(/*0*/ p0: kotlin.MutableList<kotlin.List<kotlin.String?>>): kotlin.Unit
|
||||
public abstract override /*1*/ fun invR(): kotlin.MutableList<kotlin.String?>
|
||||
public abstract override /*1*/ fun outOutS(/*0*/ p0: kotlin.List<kotlin.List<kotlin.String?>>): kotlin.Unit
|
||||
public abstract override /*1*/ fun outR(): kotlin.List<kotlin.String?>
|
||||
public abstract override /*1*/ fun outS(/*0*/ p0: kotlin.List<kotlin.String?>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun invOutR(): jet.MutableList<jet.List<jet.String?>>
|
||||
public abstract fun invOutS(/*0*/ p0: jet.MutableList<jet.List<jet.String?>>): jet.Unit
|
||||
public abstract fun invR(): jet.MutableList<jet.String?>
|
||||
public abstract fun outOutS(/*0*/ p0: jet.List<jet.List<jet.String?>>): jet.Unit
|
||||
public abstract fun outR(): jet.List<jet.String?>
|
||||
public abstract fun outS(/*0*/ p0: jet.List<jet.String?>): jet.Unit
|
||||
public abstract fun invOutR(): kotlin.MutableList<kotlin.List<kotlin.String?>>
|
||||
public abstract fun invOutS(/*0*/ p0: kotlin.MutableList<kotlin.List<kotlin.String?>>): kotlin.Unit
|
||||
public abstract fun invR(): kotlin.MutableList<kotlin.String?>
|
||||
public abstract fun outOutS(/*0*/ p0: kotlin.List<kotlin.List<kotlin.String?>>): kotlin.Unit
|
||||
public abstract fun outR(): kotlin.List<kotlin.String?>
|
||||
public abstract fun outS(/*0*/ p0: kotlin.List<kotlin.String?>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -19,4 +19,4 @@ public interface ChangeProjectionKind1 {
|
||||
@KotlinSignature("fun foo(p: MutableList<String>)")
|
||||
void foo(List<String> p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait ChangeProjectionKind1: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: MutableList<in String>)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait ChangeProjectionKind1 : java.lang.Object {
|
||||
|
||||
public trait Sub : test.ChangeProjectionKind1.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.MutableList<in jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.MutableList<in jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -19,4 +19,4 @@ public interface ChangeProjectionKind2 {
|
||||
@KotlinSignature("fun foo(p: MutableList<in String>)")
|
||||
void foo(List<String> p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait ChangeProjectionKind2: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: MutableList<String>)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait ChangeProjectionKind2 : java.lang.Object {
|
||||
|
||||
public trait Sub : test.ChangeProjectionKind2.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -19,4 +19,4 @@ public interface DeeplySubstitutedClassParameter {
|
||||
public interface Sub extends Middle<String> {
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -15,4 +15,4 @@ public trait DeeplySubstitutedClassParameter: Object {
|
||||
public trait Sub: Middle<String> {
|
||||
override fun foo(p0: String)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+7
-7
@@ -3,17 +3,17 @@ package test
|
||||
public trait DeeplySubstitutedClassParameter : java.lang.Object {
|
||||
|
||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: E): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: E): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<jet.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -18,4 +18,4 @@ public interface DeeplySubstitutedClassParameter2 {
|
||||
public interface Sub extends Middle<String> {
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -14,4 +14,4 @@ public trait DeeplySubstitutedClassParameter2: Object {
|
||||
public trait Sub: Middle<String> {
|
||||
override fun foo(p0: String)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+7
-7
@@ -3,17 +3,17 @@ package test
|
||||
public trait DeeplySubstitutedClassParameter2 : java.lang.Object {
|
||||
|
||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: E): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: E): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<jet.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritMutability : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritMutability.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNotVararg : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNotVararg.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.Array<out jet.String>?): jet.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 trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.Array<out jet.String>?): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNotVarargInteger : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNotVarargInteger.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.Array<out jet.Int>?): jet.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 trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.Array<out jet.Int>?): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.Int>?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNotVarargNotNull : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNotVarargNotNull.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.Array<out jet.String>): jet.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 trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.Array<out jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNotVarargPrimitive : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNotVarargPrimitive.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.IntArray?): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.IntArray?): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.IntArray?): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.IntArray?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -13,4 +13,4 @@ public interface InheritNullability {
|
||||
public interface Sub extends Super {
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait InheritNullability: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: String)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNullability : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNullability.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritProjectionKind : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritProjectionKind.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.MutableList<in jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.MutableList<in jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritReadOnliness : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritReadOnliness.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.List<jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.List<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.List<jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.List<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritVararg : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritVararg.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: jet.String? /*jet.Array<jet.String?>*/): jet.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 trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: jet.String? /*jet.Array<jet.String?>*/): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.String? /*kotlin.Array<kotlin.String?>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritVarargInteger : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritVarargInteger.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: jet.Int? /*jet.Array<jet.Int?>*/): jet.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 trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: jet.Int? /*jet.Array<jet.Int?>*/): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.Int? /*kotlin.Array<kotlin.Int?>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritVarargNotNull : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritVarargNotNull.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: jet.String /*jet.Array<jet.String>*/): jet.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 trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: jet.String /*jet.Array<jet.String>*/): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritVarargPrimitive : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritVarargPrimitive.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: jet.Int /*jet.IntArray*/): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ vararg p0: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: jet.Int /*jet.IntArray*/): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ vararg p0: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+6
-6
@@ -3,17 +3,17 @@ package test
|
||||
public trait Kt3302 : java.lang.Object {
|
||||
|
||||
public trait BSONObject : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun put(/*0*/ p0: jet.String, /*1*/ p1: jet.Any): jet.Any?
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun put(/*0*/ p0: kotlin.String, /*1*/ p1: kotlin.Any): kotlin.Any?
|
||||
}
|
||||
|
||||
public trait BasicBSONObject : test.Kt3302.LinkedHashMap<jet.String, jet.Any>, test.Kt3302.BSONObject {
|
||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*2*/ fun put(/*0*/ p0: jet.String, /*1*/ p1: jet.Any): jet.Any?
|
||||
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*/ fun put(/*0*/ p0: kotlin.String, /*1*/ p1: kotlin.Any): kotlin.Any?
|
||||
}
|
||||
|
||||
public trait LinkedHashMap</*0*/ K, /*1*/ V> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun put(/*0*/ p0: K, /*1*/ p1: V): V?
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -19,4 +19,4 @@ public interface MutableToReadOnly {
|
||||
@KotlinSignature("fun foo(p: List<String>)")
|
||||
void foo(List<String> p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait MutableToReadOnly: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: MutableList<String>)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait MutableToReadOnly : java.lang.Object {
|
||||
|
||||
public trait Sub : test.MutableToReadOnly.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -13,8 +13,8 @@ public interface NotNullToNullable {
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
@ExpectLoadError("Auto type 'jet.String' is not-null, while type in alternative signature is nullable: 'String?'")
|
||||
@ExpectLoadError("Auto type 'kotlin.String' is not-null, while type in alternative signature is nullable: 'String?'")
|
||||
@KotlinSignature("fun foo(p: String?)")
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait NotNullToNullable: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: String)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait NotNullToNullable : java.lang.Object {
|
||||
|
||||
public trait Sub : test.NotNullToNullable.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -16,4 +16,4 @@ public interface NullableToNotNull {
|
||||
@ExpectLoadError("In superclass type is nullable: [String?], in subclass it is not: String")
|
||||
void foo(@NotNull String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait NullableToNotNull: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: String?)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait NullableToNotNull : java.lang.Object {
|
||||
|
||||
public trait Sub : test.NullableToNotNull.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String?): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.String?): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -18,4 +18,4 @@ public interface NullableToNotNullKotlinSignature {
|
||||
@KotlinSignature("fun foo(p: String)")
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait NullableToNotNullKotlinSignature: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: String?)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait NullableToNotNullKotlinSignature : java.lang.Object {
|
||||
|
||||
public trait Sub : test.NullableToNotNullKotlinSignature.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String?): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.String?): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public interface OverrideWithErasedParameter {
|
||||
public interface Sub<T> extends Super<T> {
|
||||
void foo(Object o);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait OverrideWithErasedParameter: Object {
|
||||
public trait Sub<T>: Super<T> {
|
||||
override fun foo(p0: T?)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait OverrideWithErasedParameter : java.lang.Object {
|
||||
|
||||
public trait Sub</*0*/ T> : test.OverrideWithErasedParameter.Super<T> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: T?): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: T?): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: T?): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T?): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -19,4 +19,4 @@ public interface ReadOnlyToMutable {
|
||||
@KotlinSignature("fun foo(p: MutableList<String>)")
|
||||
void foo(List<String> p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait ReadOnlyToMutable: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: List<String>)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait ReadOnlyToMutable : java.lang.Object {
|
||||
|
||||
public trait Sub : test.ReadOnlyToMutable.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.List<jet.String>): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.List<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.List<jet.String>): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.List<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+7
-7
@@ -3,17 +3,17 @@ package test
|
||||
public trait SubclassFromGenericAndNot : java.lang.Object {
|
||||
|
||||
public trait Generic</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait NonGeneric : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<jet.String> {
|
||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*2*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
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*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -15,4 +15,4 @@ public interface SubstitutedClassParameter {
|
||||
public interface Sub extends Super<String> {
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait SubstitutedClassParameter: Object {
|
||||
public trait Sub: Super<String> {
|
||||
override fun foo(p0: String)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+5
-5
@@ -2,13 +2,13 @@ package test
|
||||
|
||||
public trait SubstitutedClassParameter : java.lang.Object {
|
||||
|
||||
public trait Sub : test.SubstitutedClassParameter.Super<jet.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
public trait Sub : test.SubstitutedClassParameter.Super<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -22,4 +22,4 @@ public interface SubstitutedClassParameters {
|
||||
public interface Sub extends Super1<String>, Super2<String> {
|
||||
void foo(String p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -17,4 +17,4 @@ public trait SubstitutedClassParameters: Object {
|
||||
public trait Sub: Super1<String>, Super2<String> {
|
||||
override fun foo(p0: String)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+7
-7
@@ -2,18 +2,18 @@ package test
|
||||
|
||||
public trait SubstitutedClassParameters : java.lang.Object {
|
||||
|
||||
public trait Sub : test.SubstitutedClassParameters.Super1<jet.String>, test.SubstitutedClassParameters.Super2<jet.String> {
|
||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*2*/ fun foo(/*0*/ p0: jet.String): jet.Unit
|
||||
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*/ fun foo(/*0*/ p0: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super1</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: T): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super2</*0*/ E> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(/*0*/ p0: E): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: E): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -14,4 +14,4 @@ public interface AddNotNullJavaSubtype {
|
||||
@NotNull
|
||||
String foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait AddNotNullJavaSubtype : Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait AddNotNullJavaSubtype : java.lang.Object {
|
||||
|
||||
public trait Sub : test.AddNotNullJavaSubtype.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.String
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.String
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.CharSequence?
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence?
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -14,4 +14,4 @@ public interface AddNotNullSameJavaType {
|
||||
@NotNull
|
||||
CharSequence foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait AddNotNullSameJavaType: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait AddNotNullSameJavaType : java.lang.Object {
|
||||
|
||||
public trait Sub : test.AddNotNullSameJavaType.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.CharSequence
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.CharSequence
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.CharSequence?
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence?
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -14,8 +14,8 @@ public interface AddNullabilityJavaSubtype {
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
@ExpectLoadError("Auto type 'jet.String' is not-null, while type in alternative signature is nullable: 'String?'")
|
||||
@ExpectLoadError("Auto type 'kotlin.String' is not-null, while type in alternative signature is nullable: 'String?'")
|
||||
@KotlinSignature("fun foo(): String?")
|
||||
String foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait AddNullabilityJavaSubtype: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait AddNullabilityJavaSubtype : java.lang.Object {
|
||||
|
||||
public trait Sub : test.AddNullabilityJavaSubtype.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.String
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.String
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.CharSequence
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -19,4 +19,4 @@ public interface AddNullabilitySameGenericType1 {
|
||||
@KotlinSignature("fun foo(): MutableList<String?>")
|
||||
List<String> foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait AddNullabilitySameGenericType1: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): MutableList<String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait AddNullabilitySameGenericType1 : java.lang.Object {
|
||||
|
||||
public trait Sub : test.AddNullabilitySameGenericType1.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableList<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableList<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -15,8 +15,8 @@ public interface AddNullabilitySameGenericType2 {
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
@ExpectLoadError("Auto type 'jet.MutableList<jet.String>' is not-null, while type in alternative signature is nullable: 'MutableList<String>?'")
|
||||
@ExpectLoadError("Auto type 'kotlin.MutableList<kotlin.String>' is not-null, while type in alternative signature is nullable: 'MutableList<String>?'")
|
||||
@KotlinSignature("fun foo(): MutableList<String>?")
|
||||
List<String> foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait AddNullabilitySameGenericType2: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): MutableList<String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait AddNullabilitySameGenericType2 : java.lang.Object {
|
||||
|
||||
public trait Sub : test.AddNullabilitySameGenericType2.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableList<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableList<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -15,8 +15,8 @@ public interface AddNullabilitySameJavaType {
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
@ExpectLoadError("Auto type 'jet.CharSequence' is not-null, while type in alternative signature is nullable: 'CharSequence?'")
|
||||
@ExpectLoadError("Auto type 'kotlin.CharSequence' is not-null, while type in alternative signature is nullable: 'CharSequence?'")
|
||||
@KotlinSignature("fun foo(): CharSequence?")
|
||||
CharSequence foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait AddNullabilitySameJavaType: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait AddNullabilitySameJavaType : java.lang.Object {
|
||||
|
||||
public trait Sub : test.AddNullabilitySameJavaType.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.CharSequence
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.CharSequence
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.CharSequence
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait CantMakeImmutableInSubclass : java.lang.Object {
|
||||
|
||||
public trait Sub : test.CantMakeImmutableInSubclass.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableList<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableCollection<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -21,4 +21,4 @@ public interface DeeplySubstitutedClassParameter {
|
||||
public interface Sub extends Middle<String> {
|
||||
String foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -15,4 +15,4 @@ public trait DeeplySubstitutedClassParameter: Object {
|
||||
public trait Sub: Middle<String> {
|
||||
override fun foo(): String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+5
-5
@@ -3,17 +3,17 @@ package test
|
||||
public trait DeeplySubstitutedClassParameter : java.lang.Object {
|
||||
|
||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): E
|
||||
}
|
||||
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<jet.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.String
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.String
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -20,4 +20,4 @@ public interface DeeplySubstitutedClassParameter2 {
|
||||
public interface Sub extends Middle<String> {
|
||||
String foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -14,4 +14,4 @@ public trait DeeplySubstitutedClassParameter2: Object {
|
||||
public trait Sub: Middle<String> {
|
||||
override fun foo(): String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+5
-5
@@ -3,17 +3,17 @@ package test
|
||||
public trait DeeplySubstitutedClassParameter2 : java.lang.Object {
|
||||
|
||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun foo(): E
|
||||
}
|
||||
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<jet.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.String
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.String
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
}
|
||||
|
||||
+26
-26
@@ -3,36 +3,36 @@ package test
|
||||
public trait HalfSubstitutedTypeParameters : java.lang.Object {
|
||||
|
||||
public trait Sub : test.HalfSubstitutedTypeParameters.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): test.HalfSubstitutedTypeParameters.TrickyList<jet.Int, jet.String?>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): test.HalfSubstitutedTypeParameters.TrickyList<kotlin.Int, kotlin.String?>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableList<jet.String?>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String?>
|
||||
}
|
||||
|
||||
public trait TrickyList</*0*/ X, /*1*/ E> : jet.MutableList<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ e: E): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ index: jet.Int, /*1*/ element: E): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ c: jet.Collection<E>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ index: jet.Int, /*1*/ c: jet.Collection<E>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun clear(): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: jet.Collection<jet.Any?>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ index: jet.Int): E
|
||||
public abstract override /*1*/ /*fake_override*/ fun indexOf(/*0*/ o: jet.Any?): jet.Int
|
||||
public abstract override /*1*/ /*fake_override*/ fun isEmpty(): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun iterator(): jet.MutableIterator<E>
|
||||
public abstract override /*1*/ /*fake_override*/ fun lastIndexOf(/*0*/ o: jet.Any?): jet.Int
|
||||
public abstract override /*1*/ /*fake_override*/ fun listIterator(): jet.MutableListIterator<E>
|
||||
public abstract override /*1*/ /*fake_override*/ fun listIterator(/*0*/ index: jet.Int): jet.MutableListIterator<E>
|
||||
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ o: jet.Any?): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ index: jet.Int): E
|
||||
public abstract override /*1*/ /*fake_override*/ fun removeAll(/*0*/ c: jet.Collection<jet.Any?>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun retainAll(/*0*/ c: jet.Collection<jet.Any?>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun set(/*0*/ index: jet.Int, /*1*/ element: E): E
|
||||
public abstract override /*1*/ /*fake_override*/ fun size(): jet.Int
|
||||
public abstract override /*1*/ /*fake_override*/ fun subList(/*0*/ fromIndex: jet.Int, /*1*/ toIndex: jet.Int): jet.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*/ 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*/ 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 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 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 isEmpty(): kotlin.Boolean
|
||||
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 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 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 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 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 subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.MutableList<E>
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNullabilityGenericSubclassSimple : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNullabilityGenericSubclassSimple.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableList<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableCollection<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -17,4 +17,4 @@ public interface InheritNullabilityJavaSubtype {
|
||||
public interface Sub extends Super {
|
||||
String foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait InheritNullabilityJavaSubtype: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNullabilityJavaSubtype : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNullabilityJavaSubtype.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.String
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.String
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.CharSequence
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -17,4 +17,4 @@ public interface InheritNullabilitySameGenericType {
|
||||
public interface Sub extends Super {
|
||||
List<String> foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait InheritNullabilitySameGenericType: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): MutableList<String>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNullabilitySameGenericType : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNullabilitySameGenericType.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableList<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableList<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableList<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -17,4 +17,4 @@ public interface InheritNullabilitySameJavaType {
|
||||
public interface Sub extends Super {
|
||||
CharSequence foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait InheritNullabilitySameJavaType: Object {
|
||||
public trait Sub: Super {
|
||||
override fun foo(): CharSequence
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritNullabilitySameJavaType : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritNullabilitySameJavaType.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.CharSequence
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.CharSequence
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.CharSequence
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.CharSequence
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritProjectionKind : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritProjectionKind.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableList<out jet.Number>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableList<out kotlin.Number>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableCollection<out jet.Number>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.Number>
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritReadOnlinessOfArgument : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritReadOnlinessOfArgument.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.List<jet.List<jet.String>>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.List<kotlin.List<kotlin.String>>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.List<jet.List<jet.String>>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.List<kotlin.List<kotlin.String>>
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritReadOnlinessSameClass : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritReadOnlinessSameClass.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.List<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.List<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.List<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.List<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait InheritReadOnlinessSubclass : java.lang.Object {
|
||||
|
||||
public trait Sub : test.InheritReadOnlinessSubclass.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.List<jet.String>
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.List<kotlin.String>
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.Collection<jet.String>
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.Collection<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -3,12 +3,12 @@ package test
|
||||
public trait SameProjectionKind : java.lang.Object {
|
||||
|
||||
public trait Sub : test.SameProjectionKind.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.MutableCollection<out jet.Number?>?
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.MutableCollection<out kotlin.Number?>?
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.MutableCollection<out jet.Number?>?
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.MutableCollection<out kotlin.Number?>?
|
||||
}
|
||||
}
|
||||
|
||||
+6
-6
@@ -3,17 +3,17 @@ package test
|
||||
public trait SubclassFromGenericAndNot : java.lang.Object {
|
||||
|
||||
public trait Generic</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
public trait NonGeneric : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun foo(): jet.String?
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): kotlin.String?
|
||||
}
|
||||
|
||||
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<jet.String> {
|
||||
public abstract override /*2*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*2*/ fun foo(): jet.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*/ fun foo(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
+12
-12
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
public trait SubclassOfCollection</*0*/ E> : jet.MutableCollection<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ e: E): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ c: jet.Collection<E>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun clear(): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: jet.Collection<jet.Any?>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun isEmpty(): jet.Boolean
|
||||
public abstract override /*1*/ fun iterator(): jet.MutableIterator<E>
|
||||
public abstract override /*1*/ /*fake_override*/ fun remove(/*0*/ o: jet.Any?): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun removeAll(/*0*/ c: jet.Collection<jet.Any?>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun retainAll(/*0*/ c: jet.Collection<jet.Any?>): jet.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun size(): jet.Int
|
||||
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 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 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 isEmpty(): kotlin.Boolean
|
||||
public abstract override /*1*/ fun iterator(): kotlin.MutableIterator<E>
|
||||
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 retainAll(/*0*/ c: kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||
public abstract override /*1*/ /*fake_override*/ fun size(): kotlin.Int
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait SubclassOfMapEntry</*0*/ K, /*1*/ V> : jet.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 getValue(): V
|
||||
public abstract override /*1*/ fun setValue(/*0*/ p0: V): V
|
||||
|
||||
+1
-1
@@ -17,4 +17,4 @@ public interface SubstitutedClassParameter {
|
||||
public interface Sub extends Super<String> {
|
||||
String foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,4 +11,4 @@ public trait SubstitutedClassParameter: Object {
|
||||
public trait Sub: Super<String> {
|
||||
override fun foo(): String
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -2,13 +2,13 @@ package test
|
||||
|
||||
public trait SubstitutedClassParameter : java.lang.Object {
|
||||
|
||||
public trait Sub : test.SubstitutedClassParameter.Super<jet.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): jet.Unit
|
||||
public abstract override /*1*/ fun foo(): jet.String
|
||||
public trait Sub : test.SubstitutedClassParameter.Super<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): kotlin.String
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun dummy(): jet.Unit
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user