Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/CustomAnnotationWithDefaultParameter.txt
2014-03-02 19:55:26 +04:00

15 lines
582 B
Plaintext

package test
public trait CustomAnnotationWithDefaultParameter : java.lang.Object {
public final annotation class MyAnnotation : kotlin.Annotation {
public constructor MyAnnotation(/*0*/ first: kotlin.String, /*1*/ second: kotlin.String = ...)
public abstract fun first(): kotlin.String
public abstract fun second(): kotlin.String
}
test.CustomAnnotationWithDefaultParameter.MyAnnotation(first = "f": kotlin.String, second = "s": kotlin.String) public open class MyTest : java.lang.Object {
public constructor MyTest()
}
}