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
@@ -4,6 +4,8 @@ public trait CustomAnnotationWithDefaultParameter {
public final annotation class MyAnnotation : kotlin.Annotation {
public constructor MyAnnotation(/*0*/ first: kotlin.String, /*1*/ second: kotlin.String = ...)
public final val first: kotlin.String
public final val second: kotlin.String
public abstract fun first(): kotlin.String
public abstract fun second(): kotlin.String
}