Files
kotlin-fork/compiler/testData/serialization/builtinsSerializer/annotationArguments/annotation.kt
T
2015-09-19 04:32:56 +03:00

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