If I have a Java base class with a private variabl...
# getting-started
a
If I have a Java base class with a private variable
private Foo foo;
and a Java interface with a method
Foo getFoo();
, and then I make a kotlin subclass like
class MyClass : BaseClass, MyInterface
it won't compile, the error being that there are two getFoo() signatures. Is there a way around this, without renaming one of them?