Regenerate test data

Add properties for Java annotations
This commit is contained in:
Denis Zharkov
2015-04-20 18:44:41 +03:00
parent 93bbd2cbbc
commit 6ca7d2aad7
66 changed files with 136 additions and 1 deletions
@@ -24,11 +24,13 @@ public open class EnumArgumentWithCustomToString {
public final annotation class EnumAnno : kotlin.Annotation {
public constructor EnumAnno(/*0*/ value: test.EnumArgumentWithCustomToString.E)
public final val value: test.EnumArgumentWithCustomToString.E
public abstract fun value(): test.EnumArgumentWithCustomToString.E
}
public final annotation class EnumArrayAnno : kotlin.Annotation {
public constructor EnumArrayAnno(/*0*/ vararg value: test.EnumArgumentWithCustomToString.E /*kotlin.Array<out test.EnumArgumentWithCustomToString.E>*/)
public final val value: kotlin.Array<test.EnumArgumentWithCustomToString.E>
public abstract fun value(): kotlin.Array<test.EnumArgumentWithCustomToString.E>
}
}