Updated test data. Unit -> jet.Unit.

This commit is contained in:
Evgeny Gerashchenko
2013-03-20 20:19:13 +04:00
parent eefdf5790a
commit d194d4d877
99 changed files with 215 additions and 215 deletions

View File

@@ -2,5 +2,5 @@ package test
public open class MethodWithMappedClasses : java.lang.Object {
public constructor MethodWithMappedClasses()
public open fun </*0*/ T> copy(/*0*/ p0 : jet.MutableList<in T>, /*1*/ p1 : jet.List<T>) : Unit
public open fun </*0*/ T> copy(/*0*/ p0 : jet.MutableList<in T>, /*1*/ p1 : jet.List<T>) : jet.Unit
}

View File

@@ -2,5 +2,5 @@ package test
public open class MethodWithTypeParameters : java.lang.Object {
public constructor MethodWithTypeParameters()
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A, /*1*/ p1 : jet.List<B>, /*2*/ p2 : jet.MutableList<in jet.String?>) : Unit where B : java.lang.Runnable, B : jet.List<java.lang.Cloneable>
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A, /*1*/ p1 : jet.List<B>, /*2*/ p2 : jet.MutableList<in jet.String?>) : jet.Unit where B : java.lang.Runnable, B : jet.List<java.lang.Cloneable>
}

View File

@@ -2,5 +2,5 @@ package test
public open class MethodWithVararg : java.lang.Object {
public constructor MethodWithVararg()
public open fun foo(/*0*/ vararg p0 : jet.String /*jet.Array<jet.String>*/) : Unit
public open fun foo(/*0*/ vararg p0 : jet.String /*jet.Array<jet.String>*/) : jet.Unit
}

View File

@@ -2,5 +2,5 @@ package test
public open class ConflictingProjectionKind : java.lang.Object {
public constructor ConflictingProjectionKind()
public open fun foo(/*0*/ p0 : jet.List<jet.Number>?) : Unit
public open fun foo(/*0*/ p0 : jet.List<jet.Number>?) : jet.Unit
}

View File

@@ -2,5 +2,5 @@ package test
public open class NotVarargReplacedWithVararg : java.lang.Object {
public constructor NotVarargReplacedWithVararg()
public open fun foo(/*0*/ p0 : jet.String?) : Unit
public open fun foo(/*0*/ p0 : jet.String?) : jet.Unit
}

View File

@@ -2,5 +2,5 @@ package test
public open class RedundantProjectionKind : java.lang.Object {
public constructor RedundantProjectionKind()
public open fun foo(/*0*/ p0 : jet.List<jet.Number>) : Unit
public open fun foo(/*0*/ p0 : jet.List<jet.Number>) : jet.Unit
}

View File

@@ -2,5 +2,5 @@ package test
public open class VarargReplacedWithNotVararg : java.lang.Object {
public constructor VarargReplacedWithNotVararg()
public open fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : Unit
public open fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : jet.Unit
}

View File

@@ -2,5 +2,5 @@ package test
public open class WrongTypeParameterBoundStructure1 : java.lang.Object {
public constructor WrongTypeParameterBoundStructure1()
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A?, /*1*/ p1 : jet.List<B>?) : Unit where B : java.lang.Runnable?, B : jet.List<java.lang.Cloneable>?
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A?, /*1*/ p1 : jet.List<B>?) : jet.Unit where B : java.lang.Runnable?, B : jet.List<java.lang.Cloneable>?
}

View File

@@ -2,5 +2,5 @@ package test
public open class WrongTypeParameterBoundStructure2 : java.lang.Object {
public constructor WrongTypeParameterBoundStructure2()
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A?, /*1*/ p1 : jet.List<B>?) : Unit where B : java.lang.Runnable?, B : jet.List<java.lang.Cloneable>?
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A?, /*1*/ p1 : jet.List<B>?) : jet.Unit where B : java.lang.Runnable?, B : jet.List<java.lang.Cloneable>?
}

View File

@@ -2,5 +2,5 @@ package test
public open class WrongTypeParametersCount : java.lang.Object {
public constructor WrongTypeParametersCount()
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A?, /*1*/ p1 : jet.List<B>?) : Unit
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0 : A?, /*1*/ p1 : jet.List<B>?) : jet.Unit
}

View File

@@ -4,19 +4,19 @@ 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?>>) : Unit
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?>>) : Unit
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?>) : Unit
public abstract override /*1*/ fun outS(/*0*/ p0 : jet.List<jet.String?>) : jet.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?>>) : Unit
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?>>) : Unit
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?>) : Unit
public abstract fun outS(/*0*/ p0 : jet.List<jet.String?>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait ChangeProjectionKind1 : java.lang.Object {
public trait Sub : test.ChangeProjectionKind1.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait ChangeProjectionKind2 : java.lang.Object {
public trait Sub : test.ChangeProjectionKind2.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
}
}

View File

@@ -3,14 +3,14 @@ package test
public trait DeeplySubstitutedClassParameter : java.lang.Object {
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E> {
public abstract override /*1*/ fun foo(/*0*/ p0 : E) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : E) : jet.Unit
}
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<jet.String> {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Super</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T) : Unit
public abstract fun foo(/*0*/ p0 : T) : jet.Unit
}
}

View File

@@ -3,14 +3,14 @@ package test
public trait DeeplySubstitutedClassParameter2 : java.lang.Object {
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E> {
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0 : E) : Unit
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ p0 : E) : jet.Unit
}
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<jet.String> {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Super</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T) : Unit
public abstract fun foo(/*0*/ p0 : T) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritMutability : java.lang.Object {
public trait Sub : test.InheritMutability.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritNotVararg : java.lang.Object {
public trait Sub : test.InheritNotVararg.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.String>?) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.String>?) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.String>?) : Unit
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.String>?) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritNotVarargInteger : java.lang.Object {
public trait Sub : test.InheritNotVarargInteger.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.Int>?) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.Int>?) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.Int>?) : Unit
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.Int>?) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritNotVarargNotNull : java.lang.Object {
public trait Sub : test.InheritNotVarargNotNull.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.String>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritNotVarargPrimitive : java.lang.Object {
public trait Sub : test.InheritNotVarargPrimitive.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.IntArray?) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.IntArray?) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.IntArray?) : Unit
public abstract fun foo(/*0*/ p0 : jet.IntArray?) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritNullability : java.lang.Object {
public trait Sub : test.InheritNullability.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.String) : Unit
public abstract fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritProjectionKind : java.lang.Object {
public trait Sub : test.InheritProjectionKind.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.MutableList<in jet.String>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritReadOnliness : java.lang.Object {
public trait Sub : test.InheritReadOnliness.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.List<jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.List<jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.List<jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.List<jet.String>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritVararg : java.lang.Object {
public trait Sub : test.InheritVararg.Super {
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : Unit
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : Unit
public abstract fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritVarargInteger : java.lang.Object {
public trait Sub : test.InheritVarargInteger.Super {
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.Int? /*jet.Array<jet.Int?>*/) : Unit
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.Int? /*jet.Array<jet.Int?>*/) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ vararg p0 : jet.Int? /*jet.Array<jet.Int?>*/) : Unit
public abstract fun foo(/*0*/ vararg p0 : jet.Int? /*jet.Array<jet.Int?>*/) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritVarargNotNull : java.lang.Object {
public trait Sub : test.InheritVarargNotNull.Super {
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.String /*jet.Array<jet.String>*/) : Unit
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.String /*jet.Array<jet.String>*/) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ vararg p0 : jet.String /*jet.Array<jet.String>*/) : Unit
public abstract fun foo(/*0*/ vararg p0 : jet.String /*jet.Array<jet.String>*/) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritVarargPrimitive : java.lang.Object {
public trait Sub : test.InheritVarargPrimitive.Super {
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.Int /*jet.IntArray*/) : Unit
public abstract override /*1*/ fun foo(/*0*/ vararg p0 : jet.Int /*jet.IntArray*/) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ vararg p0 : jet.Int /*jet.IntArray*/) : Unit
public abstract fun foo(/*0*/ vararg p0 : jet.Int /*jet.IntArray*/) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait MutableToReadOnly : java.lang.Object {
public trait Sub : test.MutableToReadOnly.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait NotNullToNullable : java.lang.Object {
public trait Sub : test.NotNullToNullable.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.String) : Unit
public abstract fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait NullableToNotNull : java.lang.Object {
public trait Sub : test.NullableToNotNull.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String?) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String?) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.String?) : Unit
public abstract fun foo(/*0*/ p0 : jet.String?) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait NullableToNotNullKotlinSignature : java.lang.Object {
public trait Sub : test.NullableToNotNullKotlinSignature.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String?) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String?) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.String?) : Unit
public abstract fun foo(/*0*/ p0 : jet.String?) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait OverrideWithErasedParameter : java.lang.Object {
public trait Sub</*0*/ T> : test.OverrideWithErasedParameter.Super<T> {
public abstract override /*1*/ fun foo(/*0*/ p0 : T?) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : T?) : jet.Unit
}
public trait Super</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T?) : Unit
public abstract fun foo(/*0*/ p0 : T?) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait ReadOnlyToMutable : java.lang.Object {
public trait Sub : test.ReadOnlyToMutable.Super {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.List<jet.String>) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.List<jet.String>) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.List<jet.String>) : Unit
public abstract fun foo(/*0*/ p0 : jet.List<jet.String>) : jet.Unit
}
}

View File

@@ -3,14 +3,14 @@ package test
public trait SubclassFromGenericAndNot : java.lang.Object {
public trait Generic</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T) : Unit
public abstract fun foo(/*0*/ p0 : T) : jet.Unit
}
public trait NonGeneric : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.String) : Unit
public abstract fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Sub : test.SubclassFromGenericAndNot.NonGeneric, test.SubclassFromGenericAndNot.Generic<jet.String> {
public abstract override /*2*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*2*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait SubstitutedClassParameter : java.lang.Object {
public trait Sub : test.SubstitutedClassParameter.Super<jet.String> {
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Super</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T) : Unit
public abstract fun foo(/*0*/ p0 : T) : jet.Unit
}
}

View File

@@ -3,14 +3,14 @@ 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*/ fun foo(/*0*/ p0 : jet.String) : Unit
public abstract override /*2*/ fun foo(/*0*/ p0 : jet.String) : jet.Unit
}
public trait Super1</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T) : Unit
public abstract fun foo(/*0*/ p0 : T) : jet.Unit
}
public trait Super2</*0*/ E> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : E) : Unit
public abstract fun foo(/*0*/ p0 : E) : jet.Unit
}
}

View File

@@ -12,10 +12,10 @@ public trait HalfSubstitutedTypeParameters : java.lang.Object {
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) : Unit
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() : Unit
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

View File

@@ -3,7 +3,7 @@ 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() : Unit
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

View File

@@ -3,10 +3,10 @@ package test
public trait InheritMutability : java.lang.Object {
public trait Sub : test.InheritMutability.Super {
public abstract override /*1*/ fun </*0*/ B : jet.MutableList<jet.String>> foo(/*0*/ p0 : B) : Unit
public abstract override /*1*/ fun </*0*/ B : jet.MutableList<jet.String>> foo(/*0*/ p0 : B) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A : jet.MutableList<jet.String>> foo(/*0*/ p0 : A) : Unit
public abstract fun </*0*/ A : jet.MutableList<jet.String>> foo(/*0*/ p0 : A) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritNullability : java.lang.Object {
public trait Sub : test.InheritNullability.Super {
public abstract override /*1*/ fun </*0*/ B : jet.CharSequence> foo(/*0*/ p0 : B) : Unit
public abstract override /*1*/ fun </*0*/ B : jet.CharSequence> foo(/*0*/ p0 : B) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A : jet.CharSequence> foo(/*0*/ p0 : A) : Unit
public abstract fun </*0*/ A : jet.CharSequence> foo(/*0*/ p0 : A) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait InheritReadOnliness : java.lang.Object {
public trait Sub : test.InheritReadOnliness.Super {
public abstract override /*1*/ fun </*0*/ B : jet.List<jet.String>> foo(/*0*/ p0 : B) : Unit
public abstract override /*1*/ fun </*0*/ B : jet.List<jet.String>> foo(/*0*/ p0 : B) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A : jet.List<jet.String>> foo(/*0*/ p0 : A) : Unit
public abstract fun </*0*/ A : jet.List<jet.String>> foo(/*0*/ p0 : A) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait TwoBounds : java.lang.Object {
public trait Sub : test.TwoBounds.Super {
public abstract override /*1*/ fun </*0*/ B> foo(/*0*/ p0 : B) : Unit where B : jet.CharSequence, B : java.lang.Cloneable
public abstract override /*1*/ fun </*0*/ B> foo(/*0*/ p0 : B) : jet.Unit where B : jet.CharSequence, B : java.lang.Cloneable
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A> foo(/*0*/ p0 : A) : Unit where A : jet.CharSequence, A : java.lang.Cloneable
public abstract fun </*0*/ A> foo(/*0*/ p0 : A) : jet.Unit where A : jet.CharSequence, A : java.lang.Cloneable
}
}

View File

@@ -3,14 +3,14 @@ package test
public trait TwoSuperclasses : java.lang.Object {
public trait Sub : test.TwoSuperclasses.Super1, test.TwoSuperclasses.Super2 {
public abstract override /*2*/ fun </*0*/ C : jet.CharSequence> foo(/*0*/ p0 : C) : Unit
public abstract override /*2*/ fun </*0*/ C : jet.CharSequence> foo(/*0*/ p0 : C) : jet.Unit
}
public trait Super1 : java.lang.Object {
public abstract fun </*0*/ A : jet.CharSequence> foo(/*0*/ p0 : A) : Unit
public abstract fun </*0*/ A : jet.CharSequence> foo(/*0*/ p0 : A) : jet.Unit
}
public trait Super2 : java.lang.Object {
public abstract fun </*0*/ B : jet.CharSequence> foo(/*0*/ p0 : B) : Unit
public abstract fun </*0*/ B : jet.CharSequence> foo(/*0*/ p0 : B) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait TwoTypeParameters : java.lang.Object {
public trait Sub : test.TwoTypeParameters.Super {
public abstract override /*1*/ fun </*0*/ B : jet.CharSequence, /*1*/ A : java.lang.Cloneable> foo(/*0*/ p0 : B, /*1*/ p1 : A) : Unit
public abstract override /*1*/ fun </*0*/ B : jet.CharSequence, /*1*/ A : java.lang.Cloneable> foo(/*0*/ p0 : B, /*1*/ p1 : A) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A : jet.CharSequence, /*1*/ B : java.lang.Cloneable> foo(/*0*/ p0 : A, /*1*/ p1 : B) : Unit
public abstract fun </*0*/ A : jet.CharSequence, /*1*/ B : java.lang.Cloneable> foo(/*0*/ p0 : A, /*1*/ p1 : B) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait UseParameterAsUpperBound : java.lang.Object {
public trait Sub : test.UseParameterAsUpperBound.Super {
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : B> foo(/*0*/ p0 : B, /*1*/ p1 : A) : Unit
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : B> foo(/*0*/ p0 : B, /*1*/ p1 : A) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A, /*1*/ B : A> foo(/*0*/ p0 : A, /*1*/ p1 : B) : Unit
public abstract fun </*0*/ A, /*1*/ B : A> foo(/*0*/ p0 : A, /*1*/ p1 : B) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait UseParameterInUpperBound : java.lang.Object {
public trait Sub : test.UseParameterInUpperBound.Super {
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : jet.List<B>> foo(/*0*/ p0 : B, /*1*/ p1 : A) : Unit
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : jet.List<B>> foo(/*0*/ p0 : B, /*1*/ p1 : A) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A, /*1*/ B : jet.List<A>> foo(/*0*/ p0 : A, /*1*/ p1 : B) : Unit
public abstract fun </*0*/ A, /*1*/ B : jet.List<A>> foo(/*0*/ p0 : A, /*1*/ p1 : B) : jet.Unit
}
}

View File

@@ -3,10 +3,10 @@ package test
public trait UseParameterInUpperBoundWithKotlinSignature : java.lang.Object {
public trait Sub : test.UseParameterInUpperBoundWithKotlinSignature.Super {
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : jet.List<B>> foo(/*0*/ p0 : B, /*1*/ p1 : A) : Unit
public abstract override /*1*/ fun </*0*/ B, /*1*/ A : jet.List<B>> foo(/*0*/ p0 : B, /*1*/ p1 : A) : jet.Unit
}
public trait Super : java.lang.Object {
public abstract fun </*0*/ A, /*1*/ B : jet.List<A>> foo(/*0*/ p0 : A, /*1*/ p1 : B) : Unit
public abstract fun </*0*/ A, /*1*/ B : jet.List<A>> foo(/*0*/ p0 : A, /*1*/ p1 : B) : jet.Unit
}
}