So I have a java interface with a getter as one of...
# getting-started
a
So I have a java interface with a getter as one of the methods that I’m trying to implement in Kotlin. If I implement that getter as a property, I get an accidental override error, and adding the override keyword to the property seems to not be allowed. Is this correct? Do I have to explicitly implement that method as “fun” and then reference a private property?