Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/EmptyArrayInParam.txt
2014-12-27 00:55:23 +03:00

14 lines
446 B
Plaintext

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