Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotationWithEmptyArrayInParam.txt
2013-04-29 15:44:07 +04:00

14 lines
492 B
Plaintext

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