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

12 lines
142 B
Kotlin
Vendored

@java.lang.annotation.Inherited
annotation class Anno
@Anno
open class Base
class Impl : Base()
@Anno
interface Intf
class IntfImpl : Intf