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

14 lines
484 B
Plaintext

package test
public trait EmptyArrayInParam : java.lang.Object {
test.EmptyArrayInParam.MyAnnotation(value = {}: kotlin.Array<kotlin.String>) public open class A : java.lang.Object {
public constructor A()
}
public final annotation class MyAnnotation : kotlin.Annotation {
public constructor MyAnnotation(/*0*/ vararg value: kotlin.String /*kotlin.Array<kotlin.String>*/)
public abstract fun value(): kotlin.Array<kotlin.String>
}
}