Hi, i'm having trouble generating optics for a sim...
# arrow
d
Hi, i'm having trouble generating optics for a simple internal sealed class. For example:
Copy code
@optics
internal sealed class X {

    data class Y(val foo: String): X()

    object Z: X()

    companion object
}
The issue is that the generated extensions are internal:
'public' member exposes its 'internal' receiver type Companion
. Am i doing something wrong?
r
internal is not supported in the old kapt codegen. We are currently working on the development of meta which replaces it.
d
oh, ok. Thank you! i was going crazy 😁