related to annotations, but not processors, does `...
# kapt
s
related to annotations, but not processors, does
@Inherited
not apply to interfaces? I have:
Copy code
@Inherited
@Retention
annotation class Event()


interface BlahEvent {  val id: Id }

class BlahBlahEvent : BlahEvent
and
event::class.findAnnotation<BlahEvent>()
is returning null (where
event
is a
BlahBlahEvent
)