debbfa8397
Merge-request: KT-MR-8509 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
15 lines
320 B
Kotlin
Vendored
15 lines
320 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Empty
|
|
|
|
annotation class JustAnnotation(val annotation: Empty)
|
|
|
|
annotation class AnnotationArray(val annotationArray: Array<JustAnnotation>)
|
|
|
|
@JustAnnotation(Empty())
|
|
@AnnotationArray(arrayOf())
|
|
class C1
|
|
|
|
@AnnotationArray(arrayOf(JustAnnotation(Empty()), JustAnnotation(Empty())))
|
|
class C2
|