I have a java interface (3rd party) that is almost...
# getting-started
d
I have a java interface (3rd party) that is almost completely implemented by a java abstract class except for one getter, say
String getX()
, it seems like I can't do
class KotlinChild(override val x: String) : JavaAbstractParent()
for some reason... maybe this isn't possible?