I have a covariant interface `Thing<out A>` ...
# announcements
p
I have a covariant interface
Thing<out A>
in Kotlin, and would like to make another interface in Java so that I can write
Thing<out A>: JThing<A>()
. How would you write JThing in Java in a way that retains the information about A.