blob: 1e841586f958cea0d81249520fd94f3ee1ee0e49 [file] [log] [blame] [edit]
annotation class Annotation(vararg val strings: String)
@Annotation
class A
annotation class AnnotationInner(val value: Annotation)
@AnnotationArray(Annotation())
class B1
@AnnotationArray(value = Annotation("sv1", "sv2"))
class B2
annotation class AnnotationArray(vararg val value: Annotation)
@AnnotationArray(Annotation(strings = arrayOf("sar1", "sar2")))
class C
@AnnotationArray(Annotation(strings = ["[sar]1", "[sar]2"]))
class C2