https://kotlinlang.org logo
#kapt
Title
s

snowe

02/01/2018, 9:33 PM
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
)