Is it possible with kapt to have an annotated clas...
# kapt
r
Is it possible with kapt to have an annotated class implement an interface? For example:
Copy code
@myannotation class A
I'd like it to expand into something like:
Copy code
class A : B
Where B is provided by the processor for
myannotation
. thanks!