Updated test data.

This commit is contained in:
Evgeny Gerashchenko
2013-03-27 16:27:31 +04:00
parent 4fc1148d59
commit 3917f11b12
3 changed files with 13 additions and 0 deletions
@@ -12,3 +12,7 @@ public open class RawSuperType : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T?) : jet.Unit
}
}
package RawSuperType {
public /*synthesized*/ fun </*0*/ T> Super(/*0*/ function : (T?) -> jet.Unit) : test.RawSuperType.Super<T>
}
@@ -14,3 +14,7 @@ public trait TwoSuperclassesInconsistentGenericTypes : java.lang.Object {
public open override /*2*/ fun foo() : jet.MutableList<jet.String>
}
}
package TwoSuperclassesInconsistentGenericTypes {
public /*synthesized*/ fun Other(/*0*/ function : () -> jet.MutableList<jet.String>?) : test.TwoSuperclassesInconsistentGenericTypes.Other
}
@@ -15,3 +15,8 @@ public trait TwoSuperclassesVarargAndNot : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.String?>?) : jet.Unit
}
}
package TwoSuperclassesVarargAndNot {
public /*synthesized*/ fun Super1(/*0*/ function : (jet.Array<jet.String?>) -> jet.Unit) : test.TwoSuperclassesVarargAndNot.Super1
public /*synthesized*/ fun Super2(/*0*/ function : (jet.Array<out jet.String?>?) -> jet.Unit) : test.TwoSuperclassesVarargAndNot.Super2
}