Tests fixed after default nullability for type arguments changed to NotNull

This commit is contained in:
Andrey Breslav
2012-12-07 21:42:48 +04:00
parent d4d713050a
commit 947ab99f53
8 changed files with 27 additions and 19 deletions
@@ -7,6 +7,6 @@ public abstract trait test.TwoSuperclassesInconsistentGenericTypes : java.lang.O
}
public open class test.TwoSuperclassesInconsistentGenericTypes.Sub : test.TwoSuperclassesInconsistentGenericTypes, test.TwoSuperclassesInconsistentGenericTypes.Other {
public final /*constructor*/ fun <init>(): test.TwoSuperclassesInconsistentGenericTypes.Sub
public open override /*2*/ fun foo(): jet.MutableList<jet.String?>
public open override /*2*/ fun foo(): jet.MutableList<jet.String>
}
}
@@ -14,6 +14,7 @@ public interface TwoSuperclassesVarargAndNot {
}
public interface Super2 {
@KotlinSignature("fun foo(s : Array<out String?>?)")
void foo(String[] s);
}