adam-mcneilly
09/13/2018, 9:13 PMprivate 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?