Files
kotlin/compiler/testData/asJava/lightClasses/SpecialAnnotationsOnAnnotationClass.kt
Pavel V. Talanov 0571c62943 KtLightElements: make light annotations lazier
Allow to get annotation list and to invoke `findAnnotation` without building delegate
Introduce KtLightNullabilityAnnotation which holds nullability information and is built
    before delegate is built
2017-05-02 15:40:17 +03:00

8 lines
153 B
Kotlin
Vendored

// Anno
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.TYPE_PARAMETER)
@MustBeDocumented
@Repeatable
annotation class Anno(val i: Int)