Files
kotlin/plugins/annotation-processing/testData/processors/InheritedAnnotationsOverridden.kt
Yan Zhulanow 8c4fb0a709 Kapt: Support inherited annotations
(cherry picked from commit 02a3e6b)
2016-08-29 16:31:16 +03:00

9 lines
148 B
Kotlin
Vendored

@Repeatable
@java.lang.annotation.Inherited
annotation class Anno(val name: String)
@Anno("Mary")
open class Base
@Anno("Tom")
class Impl : Base()