<@U0B85AN68> Is it possible with `kapt` to make a ...
# arrow
r
@Eugenio Is it possible with
kapt
to make a class implement an interface? I want this:
@higherkind class Option<A> { ... }
To expand to
Copy code
class Option<A> : HK<Option.F, A> { 
    private class F
}
where HK is an interface.