Daniele Bartorilla
03/13/2020, 8:59 PM@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?raulraja
03/13/2020, 9:04 PMDaniele Bartorilla
03/13/2020, 9:08 PM