Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/AnnotationInArray.txt
T
2022-02-10 21:20:47 +00:00

18 lines
661 B
Plaintext
Vendored

package test
public final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno(/*0*/ value: kotlin.Array<test.Bnno>)
public final val value: kotlin.Array<test.Bnno>
public final fun `<get-value>`(): kotlin.Array<test.Bnno>
}
@test.Anno(value = {test.Bnno(value = "x"), test.Bnno(value = "y")}) public final class AnnotationInArray {
/*primary*/ public constructor AnnotationInArray()
}
public final annotation class Bnno : kotlin.Annotation {
/*primary*/ public constructor Bnno(/*0*/ value: kotlin.String)
public final val value: kotlin.String
public final fun `<get-value>`(): kotlin.String
}