if i implement an interface that has a `getId()` m...
# announcements
c
if i implement an interface that has a
getId()
method, why can’t i use
override val id
?
n
is getId() in java or kotlin code ? if the interface is kotlin code you may have to use
open val id = ...
if there is name clashes idea is usually very obvious about it so i assume thats nt the issue and afaik id is not a keyword either