Adjust test data after fixes about generic nullability

This commit is contained in:
Denis Zharkov
2015-08-07 15:17:16 +03:00
parent 4a3fbcc16e
commit e8f91e596c
24 changed files with 39 additions and 39 deletions

View File

@@ -1,4 +1,4 @@
package test
public class ClassWithTypePRefSelf<P : kotlin.Enum<P>?>() {
public class ClassWithTypePRefSelf<P : kotlin.Enum<P>>() {
}

View File

@@ -1,5 +1,5 @@
package test
public final class ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P>?> {
/*primary*/ public constructor ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P>?>()
public final class ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P>> {
/*primary*/ public constructor ClassWithTypePRefSelf</*0*/ P : kotlin.Enum<P>>()
}