debbfa8397
Merge-request: KT-MR-8509 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
9 lines
570 B
Plaintext
Vendored
9 lines
570 B
Plaintext
Vendored
annotation class AnnotationArray constructor(annotationArray: Array<JustAnnotation>) : Annotation {
|
|
val annotationArray: Array<JustAnnotation>
|
|
}
|
|
@JustAnnotation(annotation = Empty) @AnnotationArray(annotationArray = {}) class C1 constructor()
|
|
@AnnotationArray(annotationArray = {JustAnnotation(annotation = Empty), JustAnnotation(annotation = Empty)}) class C2 constructor()
|
|
annotation class Empty constructor() : Annotation
|
|
annotation class JustAnnotation constructor(annotation: Empty) : Annotation {
|
|
val annotation: Empty
|
|
} |