fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -1,6 +1,6 @@
package test
internal final enum class E : kotlin.Enum<test.E> {
public final enum class E : kotlin.Enum<test.E> {
enum entry CAKE
/*primary*/ private constructor E()
@@ -14,19 +14,19 @@ internal final enum class E : kotlin.Enum<test.E> {
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
}
kotlin.annotation.annotation() internal final class EnumAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class EnumAnno : kotlin.Annotation {
/*primary*/ public constructor EnumAnno(/*0*/ value: test.E)
internal final val value: test.E
internal final fun <get-value>(): test.E
public final val value: test.E
public final fun <get-value>(): test.E
}
public final class EnumArgumentWithCustomToString {
/*primary*/ public constructor EnumArgumentWithCustomToString()
test.EnumAnno(value = E.CAKE) test.EnumArrayAnno(value = {E.CAKE, E.CAKE}) internal final fun annotated(): kotlin.Unit
test.EnumAnno(value = E.CAKE) test.EnumArrayAnno(value = {E.CAKE, E.CAKE}) public final fun annotated(): kotlin.Unit
}
kotlin.annotation.annotation() internal final class EnumArrayAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class EnumArrayAnno : kotlin.Annotation {
/*primary*/ public constructor EnumArrayAnno(/*0*/ vararg value: test.E /*kotlin.Array<out test.E>*/)
internal final val value: kotlin.Array<out test.E>
internal final fun <get-value>(): kotlin.Array<out test.E>
public final val value: kotlin.Array<out test.E>
public final fun <get-value>(): kotlin.Array<out test.E>
}